我正在点击按钮打开相机应用程序。并在下一个活动中显示捕获的照片。但捕获的照片旋转了90度。当我捕捉到图像后在视图中显示图像时,它的方向始终是横向的。为什么在纵向模式下拍摄照片时,照片不会以纵向显示?
单击按钮:
Intent i = new Intent(android.provider.MediaStore.ACTION_IMAGE_CAPTURE);
i.putExtra(android.provider.MediaStore.EXTRA_OUTPUT, Uri.fromFile(new File(APP_DIR+"/latest.png")));
startActivityForResult(i, CAPTURE_PHOTO_CONSTANT);
在onActvityresult内部:
bmp = BitmapFactory.decodeFile(APP_DIR+"/latest.png");
startActivity(new Intent(this, DisplayActivity.class));
显示拍摄的照片:
photoViewRelativeLayout.setBackgroundDrawable(new BitmapDrawable(getResources(), CaptureActivity.bmp));
答案 0 :(得分:15)
我主要使用三星手机有同样的问题。显然三星手机设置EXIF方向标签,而不是旋转单个像素。使用BitmapFactory读取位图不支持此标签。我发现这个问题的解决方案是使用活动的onActivityResult方法中的ExifInterface.Which检查与摄像机捕获图像的URI相关联的方向。
int rotate = 0;
try {
getContentResolver().notifyChange(imageUri, null);
File imageFile = new File(imagePath);
ExifInterface exif = new ExifInterface(
imageFile.getAbsolutePath());
int orientation = exif.getAttributeInt(
ExifInterface.TAG_ORIENTATION,
ExifInterface.ORIENTATION_NORMAL);
switch (orientation) {
case ExifInterface.ORIENTATION_ROTATE_270:
rotate = 270;
break;
case ExifInterface.ORIENTATION_ROTATE_180:
rotate = 180;
break;
case ExifInterface.ORIENTATION_ROTATE_90:
rotate = 90;
break;
}
Log.v(Common.TAG, "Exif orientation: " + orientation);
} catch (Exception e) {
e.printStackTrace();
}
/****** Image rotation ****/
Matrix matrix = new Matrix();
matrix.postRotate(orientation);
Bitmap cropped = Bitmap.createBitmap(scaled, x, y, width, height, matrix, true);
答案 1 :(得分:1)
我有点工作了。当我在风景模式下拍摄照片时,一切正常。如果我以纵向模式拍摄照片,我需要将相机倒置并且照片看起来很好。如果您注意到我通过在每个方向前添加“ExifInterface”来稍微更改了代码。我使用了以下代码:
try {
ExifInterface exif = new ExifInterface(filename);
int orientation = exif.getAttributeInt(ExifInterface.TAG_ORIENTATION,
ExifInterface.ORIENTATION_NORMAL);
int rotate = 0;
switch(orientation) {
case ExifInterface.ORIENTATION_ROTATE_270:
rotate-=90;break;
case ExifInterface.ORIENTATION_ROTATE_180:
rotate-=90;break;
case ExifInterface.ORIENTATION_ROTATE_90:
rotate-=90;break;
}
Log.d("Fragment", "EXIF info for file " + filename + ": " + rotate);
} catch (IOException e) {
Log.d("Fragment", "Could not get EXIF info for file " + filename + ": " + e);
}
答案 2 :(得分:1)
使用位图和位图的路径调用此方法
getRotateImage(path, bm)
在任何util类中将getRotateImage方法添加为静态方法并使用它。
public static Bitmap getRotateImage(String photoPath, Bitmap bitmap) throws IOException {
ExifInterface ei = new ExifInterface(photoPath);
int orientation = ei.getAttributeInt(ExifInterface.TAG_ORIENTATION,
ExifInterface.ORIENTATION_UNDEFINED);
Bitmap rotatedBitmap = null;
switch (orientation) {
case ExifInterface.ORIENTATION_ROTATE_90:
rotatedBitmap = rotateImage(bitmap, 90);
break;
case ExifInterface.ORIENTATION_ROTATE_180:
rotatedBitmap = rotateImage(bitmap, 180);
break;
case ExifInterface.ORIENTATION_ROTATE_270:
rotatedBitmap = rotateImage(bitmap, 270);
break;
case ExifInterface.ORIENTATION_NORMAL:
default:
rotatedBitmap = bitmap;
}
return rotatedBitmap;
}
public static Bitmap rotateImage(Bitmap source, float angle) {
Matrix matrix = new Matrix();
matrix.postRotate(angle);
return Bitmap.createBitmap(source, 0, 0, source.getWidth(), source.getHeight(),
matrix, true);
}
答案 3 :(得分:0)
你可以简单地旋转它
在onActivityresult ....中使用此代码获取图像的方向。
File imageFile = new File(imageUri.toString());
ExifInterface exif = new ExifInterface(imageFile.getAbsolutePath());
int orientation = exif.getAttributeInt(ExifInterface.TAG_ORIENTATION, ExifInterface.ORIENTATION_NORMAL);
int rotate = 0;
switch(orientation) {
case ORIENTATION_ROTATE_270:
rotate-=90;break;
case ORIENTATION_ROTATE_180:
rotate-=90;break
case ORIENTATION_ROTATE_90:
rotate-=90;break
}
答案 4 :(得分:0)
请改用Glide。它修复了方向本身,与您使用的移动设备无关。这是一个样本
Glide.with(_c).load(horizontalList.get(position).imagePath).into(holder.img_injury);