在使用Android相机意图(Camera Intent)拍摄照片或视频时,遇到了旋转问题。就是在某些设备(如三星Galaxy S7 Edge)上,拍摄后的照片或视频会被旋转90度或270度,这并不是我们想要的结果。
解决方法之一是使用ExifInterface类读取图像文件的Exif信息并进行旋转操作。ExifInterface类可在Android SDK中的android.media包中找到。以下是示例代码:
try {
ExifInterface exif = new ExifInterface(imagePath);
int orientation = exif.getAttributeInt(ExifInterface.TAG_ORIENTATION, 1);
Matrix matrix = new Matrix();
if (orientation == ExifInterface.ORIENTATION_ROTATE_90) {
matrix.postRotate(90);
} else if (orientation == ExifInterface.ORIENTATION_ROTATE_270) {
matrix.postRotate(270);
}
Bitmap bitmap = BitmapFactory.decodeFile(imagePath);
Bitmap rotatedBitmap = Bitmap.createBitmap(bitmap, 0, 0, bitmap.getWidth(), bitmap.getHeight(), matrix, true);
imageView.setImageBitmap(rotatedBitmap);
} catch (IOException e) {
e.printStackTrace();
}
此示例代码从指定的图像路径中读取Exif信息并将其应用于转换矩阵中。在此之后,使用createBitmap()方法来旋转图像并将其设置为ImageView的位图。
要注意的是,此方法只能在拍摄后查看Exif信息并进行旋转,否则图像将无法正常显示。