Home
last modified time | relevance | path

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

/frameworks/base/core/java/android/provider/
DMetadataReader.java20 import android.media.ExifInterface;
42 ExifInterface.TAG_APERTURE,
43 ExifInterface.TAG_COPYRIGHT,
44 ExifInterface.TAG_DATETIME,
45 ExifInterface.TAG_EXPOSURE_TIME,
46 ExifInterface.TAG_FOCAL_LENGTH,
47 ExifInterface.TAG_F_NUMBER,
48 ExifInterface.TAG_GPS_LATITUDE,
49 ExifInterface.TAG_GPS_LATITUDE_REF,
50 ExifInterface.TAG_GPS_LONGITUDE,
[all …]
DDocumentsContract.java38 import android.media.ExifInterface;
1684 final ExifInterface exif = new ExifInterface(file.getAbsolutePath()); in openImageThumbnail()
1690 switch (exif.getAttributeInt(ExifInterface.TAG_ORIENTATION, -1)) { in openImageThumbnail()
1691 case ExifInterface.ORIENTATION_ROTATE_90: in openImageThumbnail()
1695 case ExifInterface.ORIENTATION_ROTATE_180: in openImageThumbnail()
1699 case ExifInterface.ORIENTATION_ROTATE_270: in openImageThumbnail()
DMediaStore.java48 import android.media.ExifInterface;
/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/unit/
DExifInterfaceTest.java24 import android.media.ExifInterface;
45 private static final String TAG = ExifInterface.class.getSimpleName();
62 ExifInterface.TAG_MAKE,
63 ExifInterface.TAG_MODEL,
64 ExifInterface.TAG_F_NUMBER,
65 ExifInterface.TAG_DATETIME,
66 ExifInterface.TAG_EXPOSURE_TIME,
67 ExifInterface.TAG_FLASH,
68 ExifInterface.TAG_FOCAL_LENGTH,
69 ExifInterface.TAG_GPS_ALTITUDE,
[all …]
/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()
DIfdData.java139 if (ExifInterface.isOffsetTag(tag.getTagId())) { in equals()
DExifData.java221 ExifTag tag = ifdData.getTag(ExifInterface.getTrueTagKey(ExifInterface.TAG_USER_COMMENT)); in getUserComment()
/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/helpers/
DCameraTestUtils.java51 import android.media.ExifInterface;
1860 ExifInterface exif = new ExifInterface(jpegFilename); in verifyJpegKeys()
1876 int exifOrientation = exif.getAttributeInt(ExifInterface.TAG_ORIENTATION, in verifyJpegKeys()
1878 if (exifOrientation == ExifInterface.ORIENTATION_UNDEFINED) { in verifyJpegKeys()
1915 case ExifInterface.ORIENTATION_NORMAL: in getExifOrientationInDegree()
1917 case ExifInterface.ORIENTATION_ROTATE_90: in getExifOrientationInDegree()
1919 case ExifInterface.ORIENTATION_ROTATE_180: in getExifOrientationInDegree()
1921 case ExifInterface.ORIENTATION_ROTATE_270: in getExifOrientationInDegree()
2005 private static void verifyJpegExifExtraTags(ExifInterface exif, Size jpegSize, in verifyJpegExifExtraTags()
2021 int exifWidth = exif.getAttributeInt(ExifInterface.TAG_IMAGE_WIDTH, /*defaultValue*/0); in verifyJpegExifExtraTags()
[all …]
/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/media/java/android/media/
DThumbnailUtils.java249 ExifInterface exif = null; in createImageThumbnail()
254 exif = new ExifInterface(file); in createImageThumbnail()
255 switch (exif.getAttributeInt(ExifInterface.TAG_ORIENTATION, 0)) { in createImageThumbnail()
256 case ExifInterface.ORIENTATION_ROTATE_90: in createImageThumbnail()
259 case ExifInterface.ORIENTATION_ROTATE_180: in createImageThumbnail()
262 case ExifInterface.ORIENTATION_ROTATE_270: in createImageThumbnail()
DMediaScanner.java1019 ExifInterface exif = null;
1021 exif = new ExifInterface(entry.mPath);
1041 ExifInterface.TAG_ORIENTATION, -1);
1046 case ExifInterface.ORIENTATION_ROTATE_90:
1049 case ExifInterface.ORIENTATION_ROTATE_180:
1052 case ExifInterface.ORIENTATION_ROTATE_270:
DExifInterface.java83 public class ExifInterface { class
1370 public ExifInterface(@NonNull File file) throws IOException { in ExifInterface() method in ExifInterface
1380 public ExifInterface(@NonNull String filename) throws IOException { in ExifInterface() method in ExifInterface
1392 public ExifInterface(@NonNull FileDescriptor fileDescriptor) throws IOException { in ExifInterface() method in ExifInterface
1430 public ExifInterface(@NonNull InputStream inputStream) throws IOException { in ExifInterface() method in ExifInterface
2806 int orientation = ExifInterface.ORIENTATION_NORMAL; in getHeifAttributes()
2811 orientation = ExifInterface.ORIENTATION_ROTATE_90; in getHeifAttributes()
2814 orientation = ExifInterface.ORIENTATION_ROTATE_180; in getHeifAttributes()
2817 orientation = ExifInterface.ORIENTATION_ROTATE_270; in getHeifAttributes()
/frameworks/base/media/
DOWNERS19 per-file ExifInterface.java = jinpark@google.com, sungsoo@google.com
/frameworks/base/core/java/android/hardware/camera2/
DDngCreator.java26 import android.media.ExifInterface;
158 if (orientation < ExifInterface.ORIENTATION_UNDEFINED || in setOrientation()
159 orientation > ExifInterface.ORIENTATION_ROTATE_270) { in setOrientation()
165 if (orientation == ExifInterface.ORIENTATION_UNDEFINED) { in setOrientation()
/frameworks/base/packages/WallpaperCropper/src/com/android/wallpapercropper/
DWallpaperCropActivity.java46 import com.android.gallery3d.exif.ExifInterface;
279 ExifInterface ei = new ExifInterface(); in getRotationFromExifHelper()
294 Integer ori = ei.getTagIntValue(ExifInterface.TAG_ORIENTATION); in getRotationFromExifHelper()
296 return ExifInterface.getRotationForOrientationValue(ori.shortValue()); in getRotationFromExifHelper()
/frameworks/base/config/
Dpreloaded-classes2238 android.media.ExifInterface$ByteOrderedDataInputStream
2239 android.media.ExifInterface$ExifAttribute
2240 android.media.ExifInterface$ExifTag
2241 android.media.ExifInterface
/frameworks/base/tools/aapt2/integration-tests/CommandTests/
Dandroid-28.jarMETA-INF/ META-INF/MANIFEST.MF javax/ javax/net/ javax/ ...