/frameworks/base/packages/WallpaperCropper/src/com/android/gallery3d/exif/ |
D | ExifOutputStream.java | 83 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 …]
|
D | ExifInterface.java | 64 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 …]
|
D | ExifParser.java | 163 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 …]
|
D | ExifModifier.java | 35 private final ExifInterface mInterface; 48 protected ExifModifier(ByteBuffer byteBuffer, ExifInterface iRef) throws IOException, in ExifModifier() 62 ExifInterface.closeSilently(is); in ExifModifier() 136 ExifInterface.closeSilently(is); in commit()
|
D | ExifReader.java | 31 private final ExifInterface mInterface; 33 ExifReader(ExifInterface iRef) { in ExifReader()
|
D | IfdData.java | 139 if (ExifInterface.isOffsetTag(tag.getTagId())) { in equals()
|
D | ExifData.java | 221 ExifTag tag = ifdData.getTag(ExifInterface.getTrueTagKey(ExifInterface.TAG_USER_COMMENT)); in getUserComment()
|
/frameworks/base/media/java/android/media/ |
D | ExifInterface.java | 30 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()
|
D | ThumbnailUtils.java | 482 ExifInterface exif = null; in createThumbnailFromEXIF() 485 exif = new ExifInterface(filePath); in createThumbnailFromEXIF()
|
D | MediaScanner.java | 860 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/ |
D | BitmapRegionTileSource.java | 38 import com.android.gallery3d.exif.ExifInterface; 171 ExifInterface ei = new ExifInterface(); in loadInBackground() 173 Integer ori = ei.getTagIntValue(ExifInterface.TAG_ORIENTATION); in loadInBackground() 175 mRotation = ExifInterface.getRotationForOrientationValue(ori.shortValue()); in loadInBackground() 221 public abstract boolean readExif(ExifInterface ei); in readExif() 246 public boolean readExif(ExifInterface ei) { in readExif() 303 public boolean readExif(ExifInterface ei) { in readExif() 352 public boolean readExif(ExifInterface ei) { in readExif()
|
/frameworks/base/core/java/android/provider/ |
D | DocumentsContract.java | 33 import android.media.ExifInterface; 834 final ExifInterface exif = new ExifInterface(file.getAbsolutePath()); in openImageThumbnail() 836 switch (exif.getAttributeInt(ExifInterface.TAG_ORIENTATION, -1)) { in openImageThumbnail() 837 case ExifInterface.ORIENTATION_ROTATE_90: in openImageThumbnail() 841 case ExifInterface.ORIENTATION_ROTATE_180: in openImageThumbnail() 845 case ExifInterface.ORIENTATION_ROTATE_270: in openImageThumbnail()
|
/frameworks/base/packages/WallpaperCropper/src/com/android/wallpapercropper/ |
D | WallpaperCropActivity.java | 47 import com.android.gallery3d.exif.ExifInterface; 254 ExifInterface ei = new ExifInterface(); in getRotationFromExifHelper() 269 Integer ori = ei.getTagIntValue(ExifInterface.TAG_ORIENTATION); in getRotationFromExifHelper() 271 return ExifInterface.getRotationForOrientationValue(ori.shortValue()); in getRotationFromExifHelper()
|
/frameworks/base/docs/html/sdk/api_diff/8/ |
D | missingSinces.txt | 94 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/ |
D | android-2.2.jd | 173 <li>New support in {@link android.media.ExifInterface android.media.ExifInterface} for retrieving G…
|
D | android-2.3.jd | 224 {@link android.media.ExifInterface#getAltitude(double) getAltitude()} method to
|
D | android-3.0.jd | 611 <p>The {@link android.media.ExifInterface} includes new fields for photo aperture, ISO, and exposure
|
/frameworks/base/docs/html/sdk/api_diff/5/ |
D | missingSinces.txt | 56 NO DOC BLOCK: android.media.ExifInterface Class
|
/frameworks/base/ |
D | preloaded-classes | 578 android.media.ExifInterface
|
/frameworks/base/docs/html/ |
D | sitemap.txt | 2116 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/ |
D | current.txt | 11969 public class ExifInterface { 11970 ctor public ExifInterface(java.lang.String) throws java.io.IOException;
|