7

我正在使用 Android 2.2 在 HTC Desire 上测试我的应用程序。它完全按照我的意愿工作。我使用 Sherlock 包在旧设备上与新设备上具有相同的风格。

我的 AVD 设置为使用最新的 android,而且看起来也不错。然后我把它放到三星 Galaxy S2 上,当我使用相机和画廊图像时,它们旋转错误。三星(相机应用程序,android it self)上的某些东西没有接缝,或者它确实检查了 EXIF 并且我的图像方向错误。纵向图像以横向加载,横向图像以纵向加载。

  1. 我想我需要以某种方式检查 EXIF 并忽略它以便按原样加载图像?
  2. 更大的问题是 - 如何知道是否有任何其他设备(一些 HTC,一些 HUAWEI 一些)会出现类似问题?我认为除了有 4 个屏幕尺寸组之外,所有 android 设备的行为方式都相同......

肿瘤坏死因子。

4

1 回答 1

4

没有任何代码很难说出发生了什么。

我发现最简单的方法是读取 EXIF 信息并检查图像是否需要旋转。要阅读有关 Android 上的 ExifInterface 类的更多信息:http: //developer.android.com/intl/es/reference/android/media/ExifInterface.html

也就是说,这是一些示例代码:

/** An URI and a imageView */
public void setBitmap(ImageView mImageView, String imageURI){
    // Get the original bitmap dimensions
    BitmapFactory.Options options = new BitmapFactory.Options();            
    Bitmap bitmap = BitmapFactory.decodeFile(imageURI, options);
    float rotation = rotationForImage(getActivity(), Uri.fromFile(new File(imageURI)));

    if(rotation!=0){
        //New rotation matrix
        Matrix matrix = new Matrix();
        matrix.preRotate(rotation);
        mImageView.setImageBitmap(Bitmap.createBitmap(bitmap, 0, 0, reqHeight, reqWidth, matrix, true));
    } else {
        //No need to rotate
        mImageView.setImageBitmap(BitmapFactory.decodeFile(imageURI, options));
    }
}


/** Returns how much we have to rotate */
public static float rotationForImage(Context context, Uri uri) {
        try{
            if (uri.getScheme().equals("content")) {
                //From the media gallery
                String[] projection = { Images.ImageColumns.ORIENTATION };
                Cursor c = context.getContentResolver().query(uri, projection, null, null, null);
                    if (c.moveToFirst()) {
                        return c.getInt(0);
                    }               
            } else if (uri.getScheme().equals("file")) {
                 //From a file saved by the camera
                    ExifInterface exif = new ExifInterface(uri.getPath());
                    int rotation = (int) exifOrientationToDegrees(exif.getAttributeInt(ExifInterface.TAG_ORIENTATION, ExifInterface.ORIENTATION_NORMAL));
                    return rotation;
            }
            return 0;

        } catch (IOException e) {
            Log.e(TAG, "Error checking exif", e);
            return 0;
        }
}

/** Get rotation in degrees */
private static float exifOrientationToDegrees(int exifOrientation) {
        if (exifOrientation == ExifInterface.ORIENTATION_ROTATE_90) {
            return 90;
        } else if (exifOrientation == ExifInterface.ORIENTATION_ROTATE_180) {
            return 180;
        } else if (exifOrientation == ExifInterface.ORIENTATION_ROTATE_270) {
            return 270;
        }
        return 0;
}

如果出现错误,您将在 rotationForImage 函数上看到日志“错误检查 EXIF”。

于 2012-10-08T23:13:01.680 回答