Searched refs:exifInterface (Results 1 – 3 of 3) sorted by relevance
199 private void printExifTagsAndValues(String fileName, ExifInterface exifInterface) { in printExifTagsAndValues() argument201 if (exifInterface.hasThumbnail()) { in printExifTagsAndValues()202 byte[] thumbnailBytes = exifInterface.getThumbnailBytes(); in printExifTagsAndValues()205 Bitmap bitmap = exifInterface.getThumbnailBitmap(); in printExifTagsAndValues()217 if (exifInterface.getThumbnailBytes() != null) { in printExifTagsAndValues()226 Log.v(TAG, fileName + " Altitude = " + exifInterface.getAltitude(.0)); in printExifTagsAndValues()229 if (exifInterface.getLatLong(latLong)) { in printExifTagsAndValues()238 String tagValue = exifInterface.getAttribute(tagKey); in printExifTagsAndValues()243 private void assertIntTag(ExifInterface exifInterface, String tag, int expectedValue) { in assertIntTag() argument244 int intValue = exifInterface.getAttributeInt(tag, 0); in assertIntTag()[all …]
289 ExifInterface exifInterface = new ExifInterface(filePath); in testSingleImageThumbnail() local292 assertTrue(exifInterface.getLatLong(latLong)); in testSingleImageThumbnail()296 exifInterface.getAttribute(ExifInterface.TAG_GPS_DATESTAMP)); in testSingleImageThumbnail()298 exifInterface.getAttribute(ExifInterface.TAG_GPS_TIMESTAMP)); in testSingleImageThumbnail()302 exifInterface.getAttributeInt(ExifInterface.TAG_ORIENTATION, in testSingleImageThumbnail()311 exifInterface.getAttribute(ExifInterface.TAG_DATETIME); in testSingleImageThumbnail()
215 ExifInterface exifInterface = new ExifInterface(imageFile.getAbsolutePath()); in getOrientationInDegreeFromImage() local217 exifInterface.getAttributeInt( in getOrientationInDegreeFromImage()