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

1 23 4 5

  /packages/apps/Dialer/java/com/android/dialer/callcomposer/camera/exif/
CountedDataInputStream.java 17 package com.android.dialer.callcomposer.camera.exif;
  /packages/apps/DocumentsUI/tests/unit/com/android/documentsui/inspector/
MediaViewTest.java 71 Bundle exif = mMetadata.getBundle(DocumentsContract.METADATA_EXIF); local
72 MediaView.showExifData(mTable, mResources, TestEnv.FILE_JPG, exif, null, mGeo);
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/info/
InfoPanel.java 34 import com.android.gallery3d.exif.ExifInterface;
35 import com.android.gallery3d.exif.ExifTag;
97 List<ExifTag> exif = MasterImage.getImage().getEXIF(); local
100 if (exif != null) {
101 for (ExifTag tag : exif) {
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/tools/
SaveImage.java 35 import com.android.gallery3d.exif.ExifInterface;
245 ExifInterface exif = new ExifInterface(); local
254 exif.readExif(inStream);
258 Log.w(LOGTAG, "Cannot read exif for: " + source, e);
263 return exif;
266 public boolean putExifData(File file, ExifInterface exif, Bitmap image,
271 s = exif.getExifWriterStream(file.getAbsolutePath());
281 Log.w(LOGTAG, "Could not write exif: ", e);
318 private void updateExifData(ExifInterface exif, long time) {
320 exif.addDateTimeStampTag(ExifInterface.TAG_DATE_TIME, time
357 ExifInterface exif = getExifData(newSourceUri); local
369 ExifInterface exif = getExifData(newSourceUri); local
419 ExifInterface exif = getExifData(newSourceUri); local
    [all...]
  /packages/apps/Messaging/src/com/android/messaging/util/exif/
CountedDataInputStream.java 17 package com.android.messaging.util.exif;
ExifData.java 17 package com.android.messaging.util.exif;
29 * This class stores the EXIF header in IFDs according to the JPEG
214 * Decodes the user comment tag into string as specified in the EXIF
ExifModifier.java 17 package com.android.messaging.util.exif;
  /packages/apps/WallpaperPicker/src/com/android/gallery3d/common/
ExifOrientation.java 127 ExifInterface exif = new ExifInterface(filePath); local
128 switch (exif.getAttributeInt(ExifInterface.TAG_ORIENTATION, 0)) {
  /cts/tests/tests/media/src/android/media/cts/
ExifInterfaceTest.java 496 ExifInterface exif = new ExifInterface(imageFile.getAbsolutePath()); local
497 exif.setAttribute(ExifInterface.TAG_DATETIME, dateTimeValue);
498 exif.setAttribute(ExifInterface.TAG_DATETIME_ORIGINAL, dateTimeOriginalValue);
499 exif.saveAttributes();
502 exif = new ExifInterface(imageFile.getAbsolutePath());
503 assertEquals(dateTimeValue, exif.getAttribute(ExifInterface.TAG_DATETIME));
504 assertEquals(dateTimeOriginalValue, exif.getAttribute(ExifInterface.TAG_DATETIME_ORIGINAL));
507 exif.setAttribute(ExifInterface.TAG_DATETIME, null);
508 exif.saveAttributes();
511 exif = new ExifInterface(imageFile.getAbsolutePath())
    [all...]
  /packages/apps/Camera2/src/com/android/camera/tinyplanet/
TinyPlanetFragment.java 48 import com.android.camera.exif.ExifInterface;
367 * Adds basic EXIF data to the tiny planet image so it an be rewritten
371 * @return The JPEG data containing basic EXIF.
374 ExifInterface exif = new ExifInterface(); local
375 exif.addDateTimeStampTag(ExifInterface.TAG_DATE_TIME, System.currentTimeMillis(),
379 exif.writeExif(jpeg, jpegOut);
381 Log.e(TAG, "Could not write EXIF", e);
  /external/glide/library/src/main/java/com/bumptech/glide/load/resource/bitmap/
TransformationUtils.java 150 * Returns a matrix with rotation set based on Exif orientation tag.
154 * @param pathToOriginal Path to original image file that may have exif data.
155 * @return A rotation in degrees based on exif orientation
162 ExifInterface exif = new ExifInterface(pathToOriginal); local
163 int orientation = exif.getAttributeInt(ExifInterface.TAG_ORIENTATION, ExifInterface.ORIENTATION_UNDEFINED);
178 * @param pathToOriginal Path to original image file that may have exif data.
221 * Get the # of degrees an image must be rotated to match the given exif orientation.
223 * @param exifOrientation The exif orientation [1-8]
249 * Rotate and/or flip the image to match the given exif orientation.
253 * @param exifOrientation the exif orientation [1-8]
    [all...]
  /external/libpng/
pnginfo.h 190 png_bytep exif; member in struct:png_info_def
  /frameworks/base/packages/WallpaperCropper/src/com/android/gallery3d/exif/
ExifData.java 17 package com.android.gallery3d.exif;
28 * This class stores the EXIF header in IFDs according to the JPEG
213 * Decodes the user comment tag into string as specified in the EXIF
ExifModifier.java 17 package com.android.gallery3d.exif;
ExifTag.java 17 package com.android.gallery3d.exif;
25 * This class stores information of an EXIF tag. For more information about
26 * defined EXIF tags, please read the Jeita EXIF 2.2 standard. Tags should be
33 * The BYTE type in the EXIF standard. An 8-bit unsigned integer.
37 * The ASCII type in the EXIF standard. An 8-bit byte containing one 7-bit
42 * The SHORT type in the EXIF standard. A 16-bit (2-byte) unsigned integer
46 * The LONG type in the EXIF standard. A 32-bit (4-byte) unsigned integer
50 * The RATIONAL type of EXIF standard. It consists of two LONGs. The first
55 * The UNDEFINED type in the EXIF standard. An 8-bit byte that can take an
    [all...]
  /packages/apps/Camera2/src/com/android/camera/
MediaSaverImpl.java 30 import com.android.camera.exif.ExifInterface;
70 int height, int orientation, ExifInterface exif, OnMediaSavedListener l) {
71 addImage(data, title, date, loc, width, height, orientation, exif, l,
77 int height, int orientation, ExifInterface exif, OnMediaSavedListener l,
85 width, height, orientation, mimeType, exif, mContentResolver, l);
96 ExifInterface exif, OnMediaSavedListener l) {
99 addImage(data, title, date, loc, 0, 0, orientation, exif, l,
104 int orientation, ExifInterface exif, OnMediaSavedListener l) {
105 addImage(data, title, System.currentTimeMillis(), loc, width, height, orientation, exif, l,
145 private final ExifInterface exif; field in class:MediaSaverImpl.ImageSaveTask
    [all...]
  /packages/apps/Camera2/src/com/android/camera/exif/
ExifData.java 17 package com.android.camera.exif;
28 * This class stores the EXIF header in IFDs according to the JPEG
213 * Decodes the user comment tag into string as specified in the EXIF
ExifModifier.java 17 package com.android.camera.exif;
  /packages/apps/DocumentsUI/src/com/android/documentsui/archives/
ReadableArchive.java 264 final ExifInterface exif = new ExifInterface(inputStream); local
265 if (exif.hasThumbnail()) {
267 switch (exif.getAttributeInt(ExifInterface.TAG_ORIENTATION, -1)) {
281 final long[] range = exif.getThumbnailRange();
286 // Ignore the exception, as reading the EXIF may legally fail.
287 Log.e(TAG, "Failed to obtain thumbnail from EXIF.", e);
  /packages/apps/DocumentsUI/src/com/android/documentsui/inspector/
MediaView.java 70 Bundle exif = metadata.getBundle(DocumentsContract.METADATA_EXIF); local
71 if (exif != null) {
72 showExifData(this, mResources, doc, exif, geoClickListener, this::getAddress);
  /packages/apps/DocumentsUI/tests/unit/com/android/documentsui/archives/
ArchivesProviderTest.java 288 Bundle exif = metadata.getBundle(DocumentsContract.METADATA_EXIF); local
289 assertNotNull(exif);
291 assertEquals(3036, exif.getInt(ExifInterface.TAG_IMAGE_WIDTH));
292 assertEquals(4048, exif.getInt(ExifInterface.TAG_IMAGE_LENGTH));
293 assertEquals("Pixel", exif.getString(ExifInterface.TAG_MODEL));
  /packages/apps/Gallery2/gallerycommon/src/com/android/gallery3d/exif/
ExifData.java 17 package com.android.gallery3d.exif;
28 * This class stores the EXIF header in IFDs according to the JPEG
213 * Decodes the user comment tag into string as specified in the EXIF
ExifModifier.java 17 package com.android.gallery3d.exif;
  /packages/apps/Gallery2/src/com/android/gallery3d/data/
MediaDetails.java 21 import com.android.gallery3d.exif.ExifInterface;
22 import com.android.gallery3d.exif.ExifTag;
23 import com.android.gallery3d.exif.Rational;
52 // for EXIF
136 ExifInterface exif = new ExifInterface(); local
138 exif.readExif(filePath);
140 Log.w(TAG, "Could not find file to read exif: " + filePath, e);
142 Log.w(TAG, "Could not read exif from file: " + filePath, e);
145 setExifData(details, exif.getTag(ExifInterface.TAG_FLASH),
147 setExifData(details, exif.getTag(ExifInterface.TAG_IMAGE_WIDTH)
    [all...]
  /cts/tests/camera/src/android/hardware/cts/
CameraTest.java 106 // Some exif tags that are not defined by ExifInterface but supported.
858 ExifInterface exif = new ExifInterface(JPEG_PATH); local
925 ExifInterface exif = new ExifInterface(JPEG_PATH); local
1150 ExifInterface exif = new ExifInterface(JPEG_PATH); local
    [all...]

Completed in 550 milliseconds

1 23 4 5