HomeSort by relevance Sort by last modified time
    Searched defs:Exif (Results 1 - 6 of 6) sorted by null

  /packages/apps/Camera/src/com/android/camera/
Exif.java 21 import com.android.gallery3d.exif.ExifInvalidFormatException;
22 import com.android.gallery3d.exif.ExifParser;
23 import com.android.gallery3d.exif.ExifTag;
29 public class Exif {
67 Log.w(TAG, "Failed to read EXIF orientation", e);
70 Log.w(TAG, "Failed to read EXIF orientation", e);
  /packages/apps/Camera2/src/com/android/camera/
Exif.java 20 import com.android.camera.exif.ExifInterface;
24 public class Exif {
28 ExifInterface exif = new ExifInterface(); local
30 exif.readExif(jpegData);
32 Log.w(TAG, "Failed to read EXIF data", e);
34 return exif;
38 public static int getOrientation(ExifInterface exif) {
39 Integer val = exif.getTagIntValue(ExifInterface.TAG_ORIENTATION);
50 ExifInterface exif = getExif(jpegData);
51 return getOrientation(exif);
    [all...]
  /packages/apps/Gallery2/src/com/android/gallery3d/data/
Exif.java 21 import com.android.gallery3d.exif.ExifInterface;
26 public class Exif {
36 ExifInterface exif = new ExifInterface(); local
38 exif.readExif(is);
39 Integer val = exif.getTagIntValue(ExifInterface.TAG_ORIENTATION);
46 Log.w(TAG, "Failed to read EXIF orientation", e);
52 * Returns an exif interface instance for the given JPEG image.
54 * @param jpegData a valid JPEG image containing EXIF data
57 ExifInterface exif = new ExifInterface(); local
59 exif.readExif(jpegData)
    [all...]
  /packages/apps/LegacyCamera/src/com/android/camera/
Exif.java 21 public class Exif {
58 // Break if the marker is EXIF in APP1.
72 // JEITA CP-3451 Exif Version 2.2
  /frameworks/opt/bitmap/src/com/android/bitmap/util/
Exif.java 26 * Exif and InputStreamBuffer were pulled in from frameworks/ex/photo, and should be part of a
29 public class Exif {
30 private static final String TAG = Exif.class.getSimpleName();
64 where length is a variable int (around 30KB above) read from the EXIF headers.
77 // JPEG image files begin with FF D8. Only JPEG images have EXIF data.
113 // Break if the marker is EXIF in APP1.
132 // JEITA CP-3451 Exif Version 2.2
  /frameworks/opt/photoviewer/src/com/android/ex/photo/util/
Exif.java 24 public class Exif {
59 where length is a variable int (around 30KB above) read from the EXIF headers.
72 // JPEG image files begin with FF D8. Only JPEG images have EXIF data.
108 // Break if the marker is EXIF in APP1.
127 // JEITA CP-3451 Exif Version 2.2

Completed in 402 milliseconds