Home
last modified time | relevance | path

Searched refs:ExifInterface (Results 1 – 22 of 22) sorted by relevance

/frameworks/base/packages/WallpaperCropper/src/com/android/gallery3d/exif/
DExifOutputStream.java83 private final ExifInterface mInterface;
85 protected ExifOutputStream(OutputStream ou, ExifInterface iRef) { in ExifOutputStream()
246 if (t.getValue() == null && !ExifInterface.isOffsetTag(t.getTagId())) { in stripNullValueTags()
328 ExifTag exifOffsetTag = mInterface.buildUninitializedTag(ExifInterface.TAG_EXIF_IFD); in createRequiredIfdAndTag()
331 + ExifInterface.TAG_EXIF_IFD); in createRequiredIfdAndTag()
345 ExifTag gpsOffsetTag = mInterface.buildUninitializedTag(ExifInterface.TAG_GPS_IFD); in createRequiredIfdAndTag()
348 + ExifInterface.TAG_GPS_IFD); in createRequiredIfdAndTag()
357 .buildUninitializedTag(ExifInterface.TAG_INTEROPERABILITY_IFD); in createRequiredIfdAndTag()
360 + ExifInterface.TAG_INTEROPERABILITY_IFD); in createRequiredIfdAndTag()
376 .buildUninitializedTag(ExifInterface.TAG_JPEG_INTERCHANGE_FORMAT); in createRequiredIfdAndTag()
[all …]
DExifInterface.java64 public class ExifInterface { class
713 public ExifInterface() { in ExifInterface() method in ExifInterface
1505 if (!ExifInterface.isIfdAllowed(info, ifdId)) { in buildTag()
1990 latitude >= 0 ? ExifInterface.GpsLatitudeRef.NORTH in addGpsTags()
1991 : ExifInterface.GpsLatitudeRef.SOUTH); in addGpsTags()
1993 longitude >= 0 ? ExifInterface.GpsLongitudeRef.EAST in addGpsTags()
1994 : ExifInterface.GpsLongitudeRef.WEST); in addGpsTags()
2084 mTagInfo.put(ExifInterface.TAG_MAKE, in initTagInfo()
2086 mTagInfo.put(ExifInterface.TAG_IMAGE_WIDTH, in initTagInfo()
2088 mTagInfo.put(ExifInterface.TAG_IMAGE_LENGTH, in initTagInfo()
[all …]
DExifParser.java163 private final ExifInterface mInterface;
165 private static final short TAG_EXIF_IFD = ExifInterface
166 .getTrueTagKey(ExifInterface.TAG_EXIF_IFD);
167 private static final short TAG_GPS_IFD = ExifInterface.getTrueTagKey(ExifInterface.TAG_GPS_IFD);
168 private static final short TAG_INTEROPERABILITY_IFD = ExifInterface
169 .getTrueTagKey(ExifInterface.TAG_INTEROPERABILITY_IFD);
170 private static final short TAG_JPEG_INTERCHANGE_FORMAT = ExifInterface
171 .getTrueTagKey(ExifInterface.TAG_JPEG_INTERCHANGE_FORMAT);
172 private static final short TAG_JPEG_INTERCHANGE_FORMAT_LENGTH = ExifInterface
173 .getTrueTagKey(ExifInterface.TAG_JPEG_INTERCHANGE_FORMAT_LENGTH);
[all …]
DExifModifier.java34 private final ExifInterface mInterface;
47 protected ExifModifier(ByteBuffer byteBuffer, ExifInterface iRef) throws IOException, in ExifModifier()
61 ExifInterface.closeSilently(is); in ExifModifier()
135 ExifInterface.closeSilently(is); in commit()
DExifReader.java31 private final ExifInterface mInterface;
33 ExifReader(ExifInterface iRef) { in ExifReader()
DExifData.java221 ExifTag tag = ifdData.getTag(ExifInterface.getTrueTagKey(ExifInterface.TAG_USER_COMMENT)); in getUserComment()
DIfdData.java139 if (ExifInterface.isOffsetTag(tag.getTagId())) { in equals()
/frameworks/base/media/java/android/media/
DExifInterface.java30 public class ExifInterface { class
119 public ExifInterface(String filename) throws IOException { in ExifInterface() method in ExifInterface
313 String latValue = mAttributes.get(ExifInterface.TAG_GPS_LATITUDE); in getLatLong()
314 String latRef = mAttributes.get(ExifInterface.TAG_GPS_LATITUDE_REF); in getLatLong()
315 String lngValue = mAttributes.get(ExifInterface.TAG_GPS_LONGITUDE); in getLatLong()
316 String lngRef = mAttributes.get(ExifInterface.TAG_GPS_LONGITUDE_REF); in getLatLong()
DThumbnailUtils.java476 ExifInterface exif = null; in createThumbnailFromEXIF()
479 exif = new ExifInterface(filePath); in createThumbnailFromEXIF()
DMediaScanner.java860 ExifInterface exif = null;
862 exif = new ExifInterface(entry.mPath);
888 ExifInterface.TAG_ORIENTATION, -1);
893 case ExifInterface.ORIENTATION_ROTATE_90:
896 case ExifInterface.ORIENTATION_ROTATE_180:
899 case ExifInterface.ORIENTATION_ROTATE_270:
/frameworks/base/packages/WallpaperCropper/src/com/android/photos/
DBitmapRegionTileSource.java36 import com.android.gallery3d.exif.ExifInterface;
169 ExifInterface ei = new ExifInterface(); in loadInBackground()
171 Integer ori = ei.getTagIntValue(ExifInterface.TAG_ORIENTATION); in loadInBackground()
173 mRotation = ExifInterface.getRotationForOrientationValue(ori.shortValue()); in loadInBackground()
219 public abstract boolean readExif(ExifInterface ei); in readExif()
244 public boolean readExif(ExifInterface ei) { in readExif()
301 public boolean readExif(ExifInterface ei) { in readExif()
353 public boolean readExif(ExifInterface ei) { in readExif()
/frameworks/base/core/java/android/provider/
DDocumentsContract.java33 import android.media.ExifInterface;
1003 final ExifInterface exif = new ExifInterface(file.getAbsolutePath()); in openImageThumbnail()
1005 switch (exif.getAttributeInt(ExifInterface.TAG_ORIENTATION, -1)) { in openImageThumbnail()
1006 case ExifInterface.ORIENTATION_ROTATE_90: in openImageThumbnail()
1010 case ExifInterface.ORIENTATION_ROTATE_180: in openImageThumbnail()
1014 case ExifInterface.ORIENTATION_ROTATE_270: in openImageThumbnail()
/frameworks/base/core/java/android/hardware/camera2/
DDngCreator.java24 import android.media.ExifInterface;
130 if (orientation < ExifInterface.ORIENTATION_UNDEFINED || in setOrientation()
131 orientation > ExifInterface.ORIENTATION_ROTATE_270) { in setOrientation()
/frameworks/base/packages/WallpaperCropper/src/com/android/wallpapercropper/
DWallpaperCropActivity.java47 import com.android.gallery3d.exif.ExifInterface;
280 ExifInterface ei = new ExifInterface(); in getRotationFromExifHelper()
295 Integer ori = ei.getTagIntValue(ExifInterface.TAG_ORIENTATION); in getRotationFromExifHelper()
297 return ExifInterface.getRotationForOrientationValue(ori.shortValue()); in getRotationFromExifHelper()
/frameworks/base/docs/html/sdk/api_diff/8/
DmissingSinces.txt94 NO DOC BLOCK: android.media.ExifInterface Method getAttributeDouble(java.lang.String, double)
437 NO DOC BLOCK: android.media.ExifInterface Field TAG_FOCAL_LENGTH
438 NO DOC BLOCK: android.media.ExifInterface Field TAG_GPS_DATESTAMP
439 NO DOC BLOCK: android.media.ExifInterface Field TAG_GPS_PROCESSING_METHOD
440 NO DOC BLOCK: android.media.ExifInterface Field TAG_GPS_TIMESTAMP
/frameworks/base/docs/html/about/versions/
Dandroid-2.2.jd173 <li>New support in {@link android.media.ExifInterface android.media.ExifInterface} for retrieving G…
Dandroid-2.3.jd224 {@link android.media.ExifInterface#getAltitude(double) getAltitude()} method to
Dandroid-3.0.jd611 <p>The {@link android.media.ExifInterface} includes new fields for photo aperture, ISO, and exposure
/frameworks/base/docs/html/sdk/api_diff/5/
DmissingSinces.txt56 NO DOC BLOCK: android.media.ExifInterface Class
/frameworks/base/docs/html/
Dsitemap.txt2116 http://developer.android.com/reference/android/media/ExifInterface.html
4290 http://developer.android.com/sdk/api_diff/9/changes/android.media.ExifInterface.html
5042 http://developer.android.com/sdk/api_diff/11/changes/android.media.ExifInterface.html
6646 http://developer.android.com/sdk/api_diff/8/changes/android.media.ExifInterface.html
/frameworks/base/api/
Dsystem-current.txt15369 public class ExifInterface {
15370 ctor public ExifInterface(java.lang.String) throws java.io.IOException;
Dcurrent.txt14346 public class ExifInterface {
14347 ctor public ExifInterface(java.lang.String) throws java.io.IOException;