HomeSort by relevance Sort by last modified time
    Searched defs:exif (Results 26 - 50 of 119) sorted by null

12 3 4 5

  /packages/apps/Gallery2/gallerycommon/src/com/android/gallery3d/exif/
IfdId.java 17 package com.android.gallery3d.exif;
20 * The constants of the IFD ID defined in EXIF spec.
JpegHeader.java 17 package com.android.gallery3d.exif;
OrderedDataOutputStream.java 17 package com.android.gallery3d.exif;
Rational.java 17 package com.android.gallery3d.exif;
20 * The rational data type of EXIF tag. Contains a pair of longs representing the
ExifReader.java 17 package com.android.gallery3d.exif;
25 * This class reads the EXIF header of a JPEG file and stores it in
38 * Parses the inputStream and and returns the EXIF data in an
CountedDataInputStream.java 17 package com.android.gallery3d.exif;
IfdData.java 17 package com.android.gallery3d.exif;
  /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/Messaging/src/com/android/messaging/util/exif/
IfdId.java 17 package com.android.messaging.util.exif;
20 * The constants of the IFD ID defined in EXIF spec.
JpegHeader.java 17 package com.android.messaging.util.exif;
OrderedDataOutputStream.java 17 package com.android.messaging.util.exif;
Rational.java 17 package com.android.messaging.util.exif;
20 * The rational data type of EXIF tag. Contains a pair of longs representing the
ExifReader.java 17 package com.android.messaging.util.exif;
26 * This class reads the EXIF header of a JPEG file and stores it in
39 * Parses the inputStream and and returns the EXIF data in an
IfdData.java 17 package com.android.messaging.util.exif;
  /frameworks/base/packages/WallpaperCropper/src/com/android/gallery3d/exif/
ExifReader.java 17 package com.android.gallery3d.exif;
25 * This class reads the EXIF header of a JPEG file and stores it in
38 * Parses the inputStream and and returns the EXIF data in an
CountedDataInputStream.java 17 package com.android.gallery3d.exif;
IfdData.java 17 package com.android.gallery3d.exif;
  /packages/apps/Camera2/src/com/android/camera/exif/
ExifReader.java 17 package com.android.camera.exif;
25 * This class reads the EXIF header of a JPEG file and stores it in
38 * Parses the inputStream and and returns the EXIF data in an
CountedDataInputStream.java 17 package com.android.camera.exif;
IfdData.java 17 package com.android.camera.exif;
  /frameworks/support/exifinterface/src/androidTest/java/androidx/exifinterface/media/
ExifInterfaceTest.java 451 ExifInterface exif = createTestExifInterface(); local
452 exif.setGpsInfo(location);
454 double[] latLong = exif.getLatLong();
460 assertEquals(TEST_ALTITUDE_VALUES[TEST_ALTITUDE_VALUES.length - 1], exif.getAltitude(0),
462 assertEquals("K", exif.getAttribute(ExifInterface.TAG_GPS_SPEED_REF));
463 assertEquals(speedInMeterPerSec, exif.getAttributeDouble(ExifInterface.TAG_GPS_SPEED, 0.0)
465 assertEquals(provider, exif.getAttribute(ExifInterface.TAG_GPS_PROCESSING_METHOD));
468 TimeUnit.MILLISECONDS.toSeconds(exif.getGpsDateTime()));
475 ExifInterface exif = createTestExifInterface(); local
476 exif.setLatLong(TEST_LATITUDE_VALID_VALUES[i], TEST_LONGITUDE_VALID_VALUES[i])
489 ExifInterface exif = createTestExifInterface(); local
505 ExifInterface exif = createTestExifInterface(); local
521 ExifInterface exif = createTestExifInterface(); local
535 ExifInterface exif = new ExifInterface(imageFile.getAbsolutePath()); local
565 ExifInterface exif = new ExifInterface(imageFile.getAbsolutePath()); local
640 ExifInterface exif = createTestExifInterface(); local
    [all...]
  /external/libexif/contrib/examples/
write-exif.c 2 * write-exif.c
6 * Create a new EXIF data block and write it into a JPEG image file.
9 * to contain an EXIF tag block already, so it is easy to precompute where
10 * in the file the EXIF data should be. In real life, a library like
11 * libjpeg (included with the exif command-line tool source code) would
19 #include <libexif/exif-data.h>
22 #define FILE_NAME "write-exif.jpg"
111 /* raw EXIF header data */
118 /* byte order to use in the EXIF block */
121 /* comment to write into the EXIF block *
203 ExifData *exif = exif_data_new(); local
    [all...]
  /frameworks/base/core/tests/utiltests/src/android/util/
MetadataReaderTest.java 56 Bundle exif = mData.getBundle(DocumentsContract.METADATA_EXIF); local
57 assertEquals("3036", String.valueOf(exif.getInt(ExifInterface.TAG_IMAGE_WIDTH)));
58 assertEquals("4048", String.valueOf(exif.getInt(ExifInterface.TAG_IMAGE_LENGTH)));
59 assertEquals("2017:07:26 21:06:25", exif.getString(ExifInterface.TAG_DATETIME));
60 assertEquals("33/1,59/1,4530/100", exif.getString(ExifInterface.TAG_GPS_LATITUDE));
61 assertEquals("N", exif.getString(ExifInterface.TAG_GPS_LATITUDE_REF));
62 assertEquals("118/1,28/1,3124/100", exif.getString(ExifInterface.TAG_GPS_LONGITUDE));
63 assertEquals("W", exif.getString(ExifInterface.TAG_GPS_LONGITUDE_REF));
64 assertEquals("Google", exif.getString(ExifInterface.TAG_MAKE));
65 assertEquals("Pixel", exif.getString(ExifInterface.TAG_MODEL))
    [all...]
  /packages/apps/Dialer/java/com/android/dialer/callcomposer/camera/exif/
IfdData.java 17 package com.android.dialer.callcomposer.camera.exif;
  /packages/apps/Messaging/src/com/android/messaging/datamodel/media/
FileImageRequest.java 32 * directly from Exif information.
48 // Before using the FileInputStream, check if the Exif has a thumbnail that we can use.
52 final ExifInterface exif = new ExifInterface(mPath); local
53 if (exif.hasThumbnail()) {
54 thumbnail = exif.getThumbnail();
80 if (com.android.messaging.util.exif.ExifInterface.
100 "thumbnail from Exif", ex);

Completed in 1618 milliseconds

12 3 4 5