Home | History | Annotate | Download | only in data

Lines Matching refs:ExifInterface

21 import com.android.gallery3d.exif.ExifInterface;
36 ExifInterface exif = new ExifInterface();
39 Integer val = exif.getTagIntValue(ExifInterface.TAG_ORIENTATION);
43 return ExifInterface.getRotationForOrientationValue(val.shortValue());
56 public static ExifInterface getExif(byte[] jpegData) {
57 ExifInterface exif = new ExifInterface();
69 public static int getOrientation(ExifInterface exif) {
70 Integer val = exif.getTagIntValue(ExifInterface.TAG_ORIENTATION);
74 return ExifInterface.getRotationForOrientationValue(val.shortValue());
85 ExifInterface exif = getExif(jpegData);