如何在Android中修复相机意图旋转的图像

时间:2019-05-27 05:37:21

标签: java android android-studio android-intent android-bitmap

在我的应用中,我尝试上传个人资料图片,但上传后,图片向右旋转90度。

首先,我尝试使用Picasso加载图像,后来尝试使用bitmap加载图像:

String profilePicUrl = viewModel.profileUrl.getValue();
if (profilePicUrl == null)
  return; 
File file = new File(profilePicUrl);
Bitmap bitmap = BitmapFactory.decodeFile(file.getAbsolutePath());
profileView.setImageBitmap(bitmap);

在调试上述代码段时,我将bitmap设为null

0 个答案:

没有答案