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 21 import com.android.camera.exif.ExifInterface;
25 public class Exif {
29 ExifInterface exif = new ExifInterface(); local
31 exif.readExif(jpegData);
33 Log.w(TAG, "Failed to read EXIF data", e);
35 return exif;
39 public static int getOrientation(ExifInterface exif) {
40 Integer val = exif.getTagIntValue(ExifInterface.TAG_ORIENTATION);
51 ExifInterface exif = getExif(jpegData);
52 return getOrientation(exif);
    [all...]
PhotoModule.java 60 import com.android.camera.exif.ExifInterface;
61 import com.android.camera.exif.ExifTag;
62 import com.android.camera.exif.Rational;
721 ExifInterface exif = Exif.getExif(jpegData); local
722 int orientation = Exif.getOrientation(exif);
756 ExifTag directionRefTag = exif.buildTag(
759 ExifTag directionTag = exif.buildTag(
762 exif.setTag(directionRefTag)
1032 ExifInterface exif = Exif.getExif(data); local
    [all...]
VideoModule.java 59 import com.android.camera.exif.ExifInterface;
1731 ExifInterface exif = Exif.getExif(data); local
    [all...]
  /packages/apps/Gallery2/src/com/android/gallery3d/ingest/data/
MtpBitmapFetch.java 27 import com.android.gallery3d.data.Exif;
97 return new BitmapWithMetadata(created, 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 151 final int orientation = Exif.getOrientation(is, -1);
219 * may load EXIF orientation, and the second pass may do the actual Bitmap decode.
  /packages/apps/UnifiedEmail/src/com/android/mail/ui/
ThumbnailLoadTask.java 29 import com.android.ex.photo.util.Exif;
171 return Exif.getOrientation(in, -1);
  /packages/apps/UnifiedEmail/src/com/android/bitmap/
DecodeTask.java 11 import com.android.ex.photo.util.Exif;
140 final int orientation = Exif.getOrientation(in, byteSize);
  /external/chromium_org/chrome/browser/resources/file_manager/js/image_editor/
exif_encoder.js 7 // TODO:(kaznacheev) Share the EXIF constants with exif_parser.js
13 var EXIF_MARK_EXIF = 0xffe1; // Start of exif block.
15 var EXIF_ALIGN_LITTLE = 0x4949; // Indicates little endian exif data.
16 var EXIF_ALIGN_BIG = 0x4d4d; // Indicates big endian exif data.
20 var EXIF_TAG_EXIFDATA = 0x8769; // Pointer from TIFF to the EXIF IFD.
33 * The Exif metadata encoder.
66 var exif = this.ifd_.exif;
67 if (!exif)
68 exif = this.ifd_.exif = {}
    [all...]
  /external/chromium/chrome/browser/resources/file_manager/js/
exif_reader.js 5 var exif = {
13 "get-exif": function(fileURL) {
15 postMessage({verb: 'give-exif',
34 postMessage({verb: 'give-exif-error',
59 // Step four, find the exif marker and read all exif data.
61 var br = new exif.BufferReader(buf);
63 if (mark != exif.MARK_SOI)
67 if (mark == exif.MARK_SOS || br.eof()) {
68 return onError('Unable to find EXIF marker')
    [all...]
file_manager.js 9 // Thumbnail view is painful without the exif reader.
    [all...]
  /external/chromium_org/chrome/browser/resources/file_manager/js/metadata/
exif_parser.js 10 var EXIF_MARK_EXIF = 0xffe1; // Start of exif block.
12 var EXIF_ALIGN_LITTLE = 0x4949; // Indicates little endian exif data.
13 var EXIF_ALIGN_BIG = 0x4d4d; // Indicates big endian exif data.
17 var EXIF_TAG_EXIFDATA = 0x8769; // Pointer from TIFF to the EXIF IFD.
161 if (magic != 'Exif\0\0') {
164 this.vlog('Invalid EXIF magic: ' + magic + br.readString(100));
168 // Offsets inside the EXIF block are based after the magic string.
212 // EXIF Directory may be specified as a tag in the image directory.
214 this.vlog('Read EXIF directory.');
217 metadata.ifd.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 557 milliseconds