/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 | 58 import com.android.camera.exif.ExifInterface; 59 import com.android.camera.exif.ExifTag; 60 import com.android.camera.exif.Rational; [all...] |
VideoModule.java | 59 import com.android.camera.exif.ExifInterface; 1883 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/UnifiedEmail/src/com/android/mail/ui/ |
ThumbnailLoadTask.java | 29 import com.android.ex.photo.util.Exif; 165 return Exif.getOrientation(in, -1);
|
/frameworks/opt/bitmap/src/com/android/bitmap/ |
DecodeTask.java | 30 import com.android.bitmap.util.Exif; 172 orientation = Exif.getOrientation(in, byteSize);
|
/external/chromium_org/ui/file_manager/file_manager/foreground/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_org/ui/file_manager/gallery/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...] |
/packages/apps/Camera2/src/com/android/camera/one/v2/ |
OneCameraImpl.java | 41 import com.android.camera.Exif; 46 import com.android.camera.exif.ExifInterface; 47 import com.android.camera.exif.ExifTag; 48 import com.android.camera.exif.Rational; 408 ExifInterface exif = null; local 410 exif = new ExifInterface(); 411 exif.readExif(jpegData); 413 Integer w = exif.getTagIntValue(ExifInterface.TAG_PIXEL_X_DIMENSION); 415 Integer h = exif.getTagIntValue(ExifInterface.TAG_PIXEL_Y_DIMENSION); 418 // Get image rotation from EXIF [all...] |
/external/chromium_org/ui/file_manager/file_manager/foreground/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...] |