我正在开发Android应用程序。在我的应用程序中,我必须捕获图像并将该图像发送到服务器。在某些设备中,捕获的图像在90度旋转的服务器中发布。我在stackoverflow和其他一些网站上搜索了一个修复程序。我得到了解决方案..我使用了所有它们,例如:
Uri selectedImage = data.getData();
File imageFile = new File(selectedImage.toString());
ExifInterface exif;
try {
exif = new ExifInterface(imageFile.getAbsolutePath());
int orientation = exif.getAttributeInt(ExifInterface.TAG_ORIENTATION, ExifInterface.ORIENTATION_NORMAL);
switch(orientation) {
case ExifInterface.ORIENTATION_ROTATE_90:
rotate=90;
break;
case ExifInterface.ORIENTATION_ROTATE_180:
rotate=180;
break;
}
但不幸的是,我总是在每台设备上获得方向0。即使在90度旋转的图像设备中也是如此。
请帮助解决我的问题朋友。
答案 0 :(得分:1)
您使用:
int orientation = exif.getAttributeInt(ExifInterface.TAG_ORIENTATION, ExifInterface.ORIENTATION_NORMAL);
因此,您发送defaultValue ExifInterface.ORIENTATION_NORMAL。也许您的exif没有归因于TAG_ORIENTATION(或ORIENTATION_UNDEFINED)并且您获得默认值?
尝试:
int orientation = exif.getAttributeInt(ExifInterface.TAG_ORIENTATION, -1);
看看你得到了什么。
答案 1 :(得分:0)
我使用以下代码解决了我的问题。
private int getImageOrientation(){
final String[] imageColumns = { MediaStore.Images.Media._ID, MediaStore.Images.ImageColumns.ORIENTATION };
final String imageOrderBy = MediaStore.Images.Media._ID+" DESC";
Cursor cursor = getContentResolver().query(MediaStore.Images.Media.EXTERNAL_CONTENT_URI,
imageColumns, null, null, imageOrderBy);
if(cursor.moveToFirst()){
int orientation = cursor.getInt(cursor.getColumnIndex(MediaStore.Images.ImageColumns.ORIENTATION));
rotate=orientation;
System.out.println("orientation==="+orientation);
cursor.close();
return orientation;
} else {
return 0;
}
}
感谢您的回复,亲爱的朋友们......
答案 2 :(得分:0)
请检查图像是否旋转270度 将此添加到您的switch语句
switch(orientation)
{
case ExifInterface.ORIENTATION_ROTATE_90:
rotate=90;
break;
case ExifInterface.ORIENTATION_ROTATE_180:
rotate=180;
break;
case ExifInterface.ORIENTATION_ROTATE_270:
rotate=270;
break;
}