Searched refs:exifInterface (Results 1 – 3 of 3) sorted by relevance
211 private void printExifTagsAndValues(String fileName, ExifInterface exifInterface) { in printExifTagsAndValues() argument213 if (exifInterface.hasThumbnail()) { in printExifTagsAndValues()214 byte[] thumbnailBytes = exifInterface.getThumbnailBytes(); in printExifTagsAndValues()217 Bitmap bitmap = exifInterface.getThumbnailBitmap(); in printExifTagsAndValues()229 if (exifInterface.getThumbnailBytes() != null) { in printExifTagsAndValues()238 Log.v(TAG, fileName + " Altitude = " + exifInterface.getAltitude(.0)); in printExifTagsAndValues()241 if (exifInterface.getLatLong(latLong)) { in printExifTagsAndValues()250 String tagValue = exifInterface.getAttribute(tagKey); in printExifTagsAndValues()255 private void assertIntTag(ExifInterface exifInterface, String tag, int expectedValue) { in assertIntTag() argument256 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()