在我的应用中,我尝试上传个人资料图片,但上传后,图片向右旋转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
。