Lines Matching refs:exif

134     private String getAttrib(ExifInterface exif, String tag) {  in getAttrib()  argument
135 String attribute = exif.getAttribute(tag); in getAttrib()
176 ExifInterface exif = new ExifInterface(targetFile.toString()); in updateExif() local
178 String aperture = getAttrib(exif, ExifInterface.TAG_APERTURE); in updateExif()
180 String dateTime = getAttrib(exif, ExifInterface.TAG_DATETIME); in updateExif()
181 String exposureTime = getAttrib(exif, ExifInterface.TAG_EXPOSURE_TIME); in updateExif()
182 int flash = exif.getAttributeInt(ExifInterface.TAG_FLASH, 0); in updateExif()
183 double focalLength = exif.getAttributeDouble(ExifInterface.TAG_FOCAL_LENGTH, 0); in updateExif()
185 double gpsAltitude = exif.getAltitude(Double.NaN); in updateExif()
186 String gpsDatestamp = getAttrib(exif, ExifInterface.TAG_GPS_DATESTAMP); in updateExif()
188 if (!exif.getLatLong(gpsCoords)) { in updateExif()
192 String gpsProcessingMethod = getAttrib(exif, ExifInterface.TAG_GPS_PROCESSING_METHOD); in updateExif()
193 String gpsTimestamp = getAttrib(exif, ExifInterface.TAG_GPS_TIMESTAMP); in updateExif()
195 int width = exif.getAttributeInt(ExifInterface.TAG_IMAGE_WIDTH, 0); in updateExif()
196 int height = exif.getAttributeInt(ExifInterface.TAG_IMAGE_LENGTH, 0); in updateExif()
197 String iso = getAttrib(exif, ExifInterface.TAG_ISO); in updateExif()
198 String make = getAttrib(exif, ExifInterface.TAG_MAKE); in updateExif()
199 String model = getAttrib(exif, ExifInterface.TAG_MODEL); in updateExif()
200 int orientationVal = exif.getAttributeInt(ExifInterface.TAG_ORIENTATION, -1); in updateExif()
201 int whiteBalance = exif.getAttributeInt(ExifInterface.TAG_WHITE_BALANCE, 0); in updateExif()