【发布时间】:2012-02-24 19:53:24
【问题描述】:
我正在使用图库选择器从图库中选择图像。相机在纵向模式下拍摄的照片在图库中显示为直线。但是当我导入照片时,我得到的照片是旋转的(风景)。只有画廊显示这张照片是直的。如何管理这个问题?我希望所有照片都作为它的实际方向。 提前致谢
private void addImageFromGallery() {
Intent intent = new Intent();
intent.setType("image/*");
intent.setAction(Intent.ACTION_GET_CONTENT);
startActivityForResult(Intent.createChooser(intent, "Select Picture"),
GALLERY_CODE);
}
【问题讨论】:
-
Gallery 在拍照时知道手机的确切方向。所以它旋转图片。但我不明白。
标签: android android-camera android-gallery