Home
last modified time | relevance | path

Searched refs:exifInterface (Results 1 – 9 of 9) sorted by relevance

/aosp12/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/unit/
H A DExifInterfaceTest.java198 if (exifInterface.hasThumbnail()) { in printExifTagsAndValues()
226 if (exifInterface.getLatLong(latLong)) { in printExifTagsAndValues()
327 exifInterface = new ExifInterface(in); in testExifInterfaceCommon()
337 exifInterface = new ExifInterface(in); in testExifInterfaceCommon()
361 exifInterface.saveAttributes(); in testSaveAttributes_withFileName()
368 exifInterface.saveAttributes(); in testSaveAttributes_withFileName()
373 exifInterface.saveAttributes(); in testSaveAttributes_withFileName()
386 exifInterface.saveAttributes(); in testSaveAttributes_withFileDescriptor()
394 exifInterface.saveAttributes(); in testSaveAttributes_withFileDescriptor()
400 exifInterface.saveAttributes(); in testSaveAttributes_withFileDescriptor()
[all …]
/aosp12/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/screenshot/
H A DImageExporterTest.java80 ImageExporter.updateExifAttributes(exifInterface, in testUpdateExifAttributes_timeZoneUTC()
86 exifInterface.getAttribute(ExifInterface.TAG_IMAGE_UNIQUE_ID)); in testUpdateExifAttributes_timeZoneUTC()
88 exifInterface.getAttribute(ExifInterface.TAG_OFFSET_TIME_ORIGINAL)); in testUpdateExifAttributes_timeZoneUTC()
122 ExifInterface exifInterface = new ExifInterface(pfd.getFileDescriptor()); in testImageExport() local
126 exifInterface.getAttribute(ExifInterface.TAG_IMAGE_UNIQUE_ID)); in testImageExport()
129 exifInterface.getAttribute(ExifInterface.TAG_SOFTWARE)); in testImageExport()
132 exifInterface.getAttributeInt(ExifInterface.TAG_IMAGE_WIDTH, 0)); in testImageExport()
134 exifInterface.getAttributeInt(ExifInterface.TAG_IMAGE_LENGTH, 0)); in testImageExport()
137 exifInterface.getAttribute(ExifInterface.TAG_DATETIME_ORIGINAL)); in testImageExport()
139 exifInterface.getAttribute(ExifInterface.TAG_SUBSEC_TIME_ORIGINAL)); in testImageExport()
[all …]
/aosp12/packages/apps/Messaging/src/com/android/messaging/ui/mediapicker/
H A DImagePersistTask.java82 final ExifInterface exifInterface = new ExifInterface(); in doInBackgroundTimed() local
84 exifInterface.readExif(mBytes); in doInBackgroundTimed()
86 exifInterface.getTagIntValue(ExifInterface.TAG_ORIENTATION); in doInBackgroundTimed()
92 exifInterface.setCompressedThumbnail((byte[]) null); in doInBackgroundTimed()
124 ExifTag orientationTag = exifInterface.getTag(ExifInterface.TAG_ORIENTATION); in doInBackgroundTimed()
125 exifInterface.clearExif(); in doInBackgroundTimed()
126 exifInterface.setTag(orientationTag); in doInBackgroundTimed()
127 exifInterface.writeExif(clippedBitmap, outputStream); in doInBackgroundTimed()
/aosp12/packages/apps/Dialer/java/com/android/dialer/callcomposer/camera/
H A DImagePersistWorker.java107 final ExifInterface exifInterface = new ExifInterface(); in writeClippedBitmap() local
109 exifInterface.readExif(bytes); in writeClippedBitmap()
110 final Integer orientationValue = exifInterface.getTagIntValue(ExifInterface.TAG_ORIENTATION); in writeClippedBitmap()
144 exifInterface.clearExif(); in writeClippedBitmap()
145 exifInterface.writeExif(clippedBitmap, outputStream); in writeClippedBitmap()
/aosp12/packages/apps/Gallery2/src/com/android/gallery3d/data/
H A DLocalImage.java284 ExifInterface exifInterface = new ExifInterface(); in rotate() local
285 ExifTag tag = exifInterface.buildTag(ExifInterface.TAG_ORIENTATION, in rotate()
288 exifInterface.setTag(tag); in rotate()
290 exifInterface.forceRewriteExif(filePath); in rotate()
/aosp12/packages/apps/Camera2/src/com/android/camera/stats/
H A DCaptureSessionStatsCollector.java140 final ExifInterface exifInterface in decorateAtTimeWriteToDisk() argument
142 mExifInterface = exifInterface; in decorateAtTimeWriteToDisk()
/aosp12/frameworks/base/core/java/android/provider/
H A DMetadataReader.java258 ExifInterface exifInterface = new ExifInterface(stream); in getExifData() local
262 int data = exifInterface.getAttributeInt(tag, Integer.MIN_VALUE); in getExifData()
267 double data = exifInterface.getAttributeDouble(tag, Double.MIN_VALUE); in getExifData()
272 String data = exifInterface.getAttribute(tag); in getExifData()
/aosp12/packages/apps/DocumentsUI/src/com/android/documentsui/archives/
H A DMetadataReader.java260 ExifInterface exifInterface = new ExifInterface(stream); in getExifData() local
264 int data = exifInterface.getAttributeInt(tag, Integer.MIN_VALUE); in getExifData()
269 double data = exifInterface.getAttributeDouble(tag, Double.MIN_VALUE); in getExifData()
274 String data = exifInterface.getAttribute(tag); in getExifData()
/aosp12/packages/apps/Messaging/src/com/android/messaging/util/
H A DImageUtils.java272 final ExifInterface exifInterface = new ExifInterface(); in getOrientation() local
273 exifInterface.readExif(inputStream); in getOrientation()
275 exifInterface.getTagIntValue(ExifInterface.TAG_ORIENTATION); in getOrientation()