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

  /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...]
PhotoModule.java 50 import com.android.camera.exif.ExifInterface;
51 import com.android.camera.exif.ExifTag;
52 import com.android.camera.exif.Rational;
813 ExifInterface exif; field in class:PhotoModule.ResizeBundle
823 final ExifInterface exif = dataBundle.exif; local
847 exif.setTagValue(ExifInterface.TAG_PIXEL_X_DIMENSION, new Integer(newWidth));
848 exif.setTagValue(ExifInterface.TAG_PIXEL_Y_DIMENSION, new Integer(newHeight));
906 final ExifInterface exif = Exif.getExif(originalJpegData); local
1294 ExifInterface exif = Exif.getExif(data); local
    [all...]
VideoModule.java 59 import com.android.camera.exif.ExifInterface;
1951 ExifInterface exif = Exif.getExif(data); local
    [all...]
  /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
  /packages/apps/Gallery2/src/com/android/gallery3d/ingest/data/
MtpBitmapFetch.java 28 import com.android.gallery3d.data.Exif;
103 int orientation = Exif.getOrientation(imageBytes);
  /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);
PhotoModule.java     [all...]
VideoModule.java     [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...]
UriImage.java 102 mRotation = Exif.getOrientation(is);
124 mRotation = Exif.getOrientation(is);
  /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
Camera.java     [all...]
VideoCamera.java     [all...]
  /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
ImageUtils.java 148 final int orientation = Exif.getOrientation(is, -1);
216 * may load EXIF orientation, and the second pass may do the actual Bitmap decode.
  /packages/apps/Camera2/src/com/android/camera/one/v2/imagesaver/
JpegImageBackendImageSaver.java 24 import com.android.camera.Exif;
131 // If the rotation is implemented as an EXIF flag, we need to
134 int rotation = Exif.getOrientation(payload.data);
  /packages/apps/UnifiedEmail/src/com/android/mail/ui/
ThumbnailLoadTask.java 29 import com.android.ex.photo.util.Exif;
174 return Exif.getOrientation(in, -1);
  /packages/apps/Camera2/src/com/android/camera/processing/imagebackend/
TaskCompressImageToJpeg.java 25 import com.android.camera.Exif;
28 import com.android.camera.exif.ExifInterface;
91 * Encapsulates the required EXIF Tag parse for Image processing.
93 * @param exif EXIF data from which to extract data.
96 public Map<Integer, Integer> exifGetMinimalTags(ExifInterface exif) {
99 ExifInterface.getRotationForOrientationValue((short) Exif.getOrientation(exif)));
100 map.put(ExifInterface.TAG_PIXEL_X_DIMENSION, exif.getTagIntValue(
102 map.put(ExifInterface.TAG_PIXEL_Y_DIMENSION, exif.getTagIntValue
341 final ExifInterface exif = createExif(Optional.fromNullable(exifData), resultImage, local
400 ExifInterface exif; local
    [all...]
  /frameworks/opt/bitmap/src/com/android/bitmap/
DecodeTask.java 30 import com.android.bitmap.util.Exif;
172 orientation = Exif.getOrientation(in, byteSize);
  /packages/apps/Camera2/src/com/android/camera/one/v2/
OneCameraImpl.java 46 import com.android.camera.Exif;
51 import com.android.camera.exif.ExifInterface;
52 import com.android.camera.exif.ExifTag;
53 import com.android.camera.exif.Rational;
472 ExifInterface exif = null; local
474 exif = new ExifInterface();
475 exif.readExif(jpegData);
477 Integer w = exif.getTagIntValue(ExifInterface.TAG_PIXEL_X_DIMENSION);
479 Integer h = exif.getTagIntValue(ExifInterface.TAG_PIXEL_Y_DIMENSION);
482 // Get image rotation from EXIF
    [all...]
  /packages/apps/LegacyCamera/src/com/android/camera/panorama/
PanoramaActivity.java 23 import com.android.camera.Exif;
957 ExifInterface exif = new ExifInterface(filepath); local
    [all...]

Completed in 984 milliseconds