我怎样才能在Android 1.6上获得当前的图像轮换?

时间:2011-01-21 12:58:55

标签: android image rotation

如何在Android 1.6上获得当前的图像旋转? 至于Android 2.0,我使用ExifInterface,但它在Android 1.6上不可用我希望在Android 1.6上实现像这样的smth

ExifInterface exif = new ExifInterface(path);
             int orientation = exif.getAttributeInt(ExifInterface.TAG_ORIENTATION, 1);
             if (orientation != -1) {
                     // recognize a subset of orientation tag values.
                     switch (orientation) {
                     case ExifInterface.ORIENTATION_ROTATE_90:
                         degree = 90;
                         break;
                     case ExifInterface.ORIENTATION_ROTATE_180:
                         degree = 180;
                         break;
                     case ExifInterface.ORIENTATION_ROTATE_270:
                         degree = 270;
                         break;
                     default:
                         degree = 0;
                         break;
                     }
                 }

0 个答案:

没有答案