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

12 3 4 5 6 7 8

  /packages/apps/Camera2/src/com/android/camera/app/
MediaSaver.java 23 import com.android.camera.exif.ExifInterface;
83 * @param exif The EXIF data of this image.
87 int orientation, ExifInterface exif, OnMediaSavedListener l);
104 * @param exif The EXIF data of this image.
109 int orientation, ExifInterface exif, OnMediaSavedListener l, String mimeType);
123 * @param exif The EXIF data of this image.
127 ExifInterface exif, OnMediaSavedListener l)
    [all...]
  /external/libexif/libexif/
exif-entry.h 1 /*! \file exif-entry.h
2 * \brief Handling EXIF entries
30 /*! Data found in one EXIF tag.
38 #include <libexif/exif-content.h>
39 #include <libexif/exif-format.h>
40 #include <libexif/exif-mem.h>
42 /*! Data found in one EXIF tag */
44 /*! EXIF tag for this entry */
54 /*! Pointer to the raw EXIF data for this entry. It is allocated
56 * here may be manipulated using the functions in exif-utils.h *
    [all...]
exif-mnote-data-priv.h 0 /* exif-mnote-data-priv.h
28 #include <libexif/exif-mnote-data.h>
29 #include <libexif/exif-byte-order.h>
30 #include <libexif/exif-log.h>
exif-data.h 1 /*! \file exif-data.h
31 #include <libexif/exif-byte-order.h>
32 #include <libexif/exif-data-type.h>
33 #include <libexif/exif-ifd.h>
34 #include <libexif/exif-log.h>
35 #include <libexif/exif-tag.h>
37 /*! Represents the entire EXIF data found in an image */
41 #include <libexif/exif-content.h>
42 #include <libexif/exif-mnote-data.h>
43 #include <libexif/exif-mem.h
    [all...]
exif-byte-order.c 0 /* exif-byte-order.c
23 #include <libexif/exif-byte-order.h>
exif-ifd.c 0 /* exif-ifd.c
23 #include <libexif/exif-ifd.h>
33 {EXIF_IFD_EXIF, "EXIF"},
exif-mem.h 1 /*! \file exif-mem.h
5 /* exif-mem.h
28 #include <libexif/exif-utils.h>
exif-mnote-data.h 1 /*! \file exif-mnote-data.h
2 * \brief Handling EXIF MakerNote tags
30 #include <libexif/exif-log.h>
  /external/libexif/test/
test-mem.c 23 #include <libexif/exif-data.h>
24 #include <libexif/exif-ifd.h>
25 #include <libexif/exif-loader.h>
40 printf ("Creating EXIF data...\n");
44 printf ("Fill EXIF data with all necessary entries to follow specs...\n");
49 printf ("Saving EXIF data to memory...\n");
53 printf ("Writing %i byte(s) EXIF data to loader...\n", ebs);
test-value.c 21 #include <libexif/exif-utils.h>
22 #include <libexif/exif-data.h>
test-sorted.c 25 #include <libexif/exif-tag.h>
  /packages/apps/Gallery2/src/com/android/photos/drawables/
DataUriThumbnailDrawable.java 33 ExifInterface exif = new ExifInterface(data); local
34 if (exif.hasThumbnail()) {
35 thumbnail = exif.getThumbnail();
  /pdk/apps/TestingCamera/src/com/android/testingcamera/
SnapshotDialogFragment.java 134 private String getAttrib(ExifInterface exif, String tag) {
135 String attribute = exif.getAttribute(tag);
174 ((TestingCamera) getActivity()).log("Extracting EXIF");
176 ExifInterface exif = new ExifInterface(targetFile.toString()); local
178 String aperture = getAttrib(exif, ExifInterface.TAG_APERTURE);
180 String dateTime = getAttrib(exif, ExifInterface.TAG_DATETIME);
181 String exposureTime = getAttrib(exif, ExifInterface.TAG_EXPOSURE_TIME);
182 int flash = exif.getAttributeInt(ExifInterface.TAG_FLASH, 0);
183 double focalLength = exif.getAttributeDouble(ExifInterface.TAG_FOCAL_LENGTH, 0);
185 double gpsAltitude = exif.getAltitude(Double.NaN)
    [all...]
  /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...]
  /external/dng_sdk/source/
dng_image_writer.cpp 877 const dng_exif &exif,
894 , fExposureTime (tcExposureTime , exif.fExposureTime )
895 , fShutterSpeedValue (tcShutterSpeedValue, exif.fShutterSpeedValue)
897 , fFNumber (tcFNumber , exif.fFNumber )
898 , fApertureValue (tcApertureValue, exif.fApertureValue)
900 , fBrightnessValue (tcBrightnessValue, exif.fBrightnessValue)
902 , fExposureBiasValue (tcExposureBiasValue, exif.fExposureBiasValue)
904 , fMaxApertureValue (tcMaxApertureValue , exif.fMaxApertureValue)
906 , fSubjectDistance (tcSubjectDistance, exif.fSubjectDistance)
908 , fFocalLength (tcFocalLength, exif.fFocalLength
    [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/data/
MediaDetails.java 23 import com.android.camera.exif.ExifInterface;
24 import com.android.camera.exif.ExifTag;
51 // for EXIF
134 * Extracts data from the EXIF of the given file and stores it in the
138 ExifInterface exif = new ExifInterface(); local
140 exif.readExif(filePath);
142 Log.w(TAG, "Could not find file to read exif: " + filePath, e);
144 Log.w(TAG, "Could not read exif from file: " + filePath, e);
147 setExifData(details, exif.getTag(ExifInterface.TAG_FLASH),
149 setExifData(details, exif.getTag(ExifInterface.TAG_IMAGE_WIDTH)
    [all...]
  /frameworks/base/packages/WallpaperCropper/src/com/android/gallery3d/exif/
JpegHeader.java 17 package com.android.gallery3d.exif;
ByteBufferInputStream.java 17 package com.android.gallery3d.exif;
  /packages/apps/Camera2/src/com/android/camera/exif/
JpegHeader.java 17 package com.android.camera.exif;
  /packages/apps/Dialer/java/com/android/dialer/callcomposer/camera/exif/
JpegHeader.java 17 package com.android.dialer.callcomposer.camera.exif;
  /packages/apps/Gallery2/gallerycommon/src/com/android/gallery3d/exif/
JpegHeader.java 17 package com.android.gallery3d.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);
  /packages/apps/Messaging/src/com/android/messaging/util/exif/
JpegHeader.java 17 package com.android.messaging.util.exif;
  /external/libexif/libexif/canon/
mnote-canon-tag.h 24 #include <libexif/exif-data.h>

Completed in 675 milliseconds

12 3 4 5 6 7 8