HomeSort by relevance Sort by last modified time
    Searched refs:exif (Results 1 - 12 of 12) sorted by null

  /external/jhead/
Android.mk 24 exif.c \
  /cts/tests/tests/hardware/src/android/hardware/cts/
CameraTest.java 761 ExifInterface exif = new ExifInterface(JPEG_PATH); local
762 assertTrue(exif.hasThumbnail());
763 byte[] thumb = exif.getThumbnail();
778 exif = new ExifInterface(JPEG_PATH);
779 assertFalse(exif.hasThumbnail());
801 ExifInterface exif = new ExifInterface(JPEG_PATH); local
802 assertNotNull(exif.getAttribute(ExifInterface.TAG_MAKE));
803 assertNotNull(exif.getAttribute(ExifInterface.TAG_MODEL));
804 assertNotNull(exif.getAttribute(ExifInterface.TAG_DATETIME));
805 assertTrue(exif.getAttributeInt(ExifInterface.TAG_IMAGE_WIDTH, 0) != 0)
    [all...]
  /packages/apps/Gallery/src/com/android/camera/
MenuHelper.java 175 ExifInterface exif = getExif(image); local
176 if (exif == null) return false;
178 return exif.getLatLong(latlng);
220 ExifInterface exif) {
222 if (exif.getLatLong(latlng)) {
254 Log.e(TAG, "cannot read exif", ex);
270 ExifInterface exif = getExif(image);
272 if (exif != null) {
274 if (exif.getLatLong(latlng)) {
316 ExifInterface exif = getExif(image) local
    [all...]
ImageManager.java 254 ExifInterface exif = null; local
256 exif = new ExifInterface(filepath);
258 Log.e(TAG, "cannot read exif", ex);
260 if (exif != null) {
261 int orientation = exif.getAttributeInt(
  /packages/apps/Gallery3D/src/com/cooliris/media/
ImageManager.java 195 ExifInterface exif = null; local
197 exif = new ExifInterface(filepath);
199 Log.e(TAG, "cannot read exif", ex);
201 if (exif != null) {
202 int orientation = exif.getAttributeInt(
LocalDataSource.java 172 // Parse EXIF orientation if a local file.
175 ExifInterface exif = new ExifInterface(Uri.parse(mUri).getPath()); local
176 item.mRotation = Shared.exifOrientationToDegrees(exif.getAttributeInt(ExifInterface.TAG_ORIENTATION,
179 Log.i(TAG, "Error reading Exif information, probably not a jpeg.");
359 // Update the file EXIF information.
364 ExifInterface exif = new ExifInterface(path); local
365 exif.setAttribute(ExifInterface.TAG_ORIENTATION, Integer.toString(Shared.degreesToExifOrientation(rotation)));
366 exif.saveAttributes();
DetailMode.java 153 ExifInterface exif = new ExifInterface(item.mFilePath); local
154 String localtime = exif.getAttribute(ExifInterface.TAG_DATETIME);
CropImage.java 273 ExifInterface exif = new ExifInterface(target.getPath()); local
274 rotation = (int) Shared.exifOrientationToDegrees(exif.getAttributeInt(ExifInterface.TAG_ORIENTATION,
    [all...]
  /frameworks/base/media/java/android/media/
ThumbnailUtils.java 77 * This method first examines if the thumbnail embedded in EXIF is bigger than our target
432 * the thumbnail in exif or the full image.
446 * Creates a bitmap by either downsampling from the thumbnail in EXIF or the full image.
448 * which contains a downsampled bitmap and the thumbnail data in EXIF if exists.
454 ExifInterface exif = null;
457 exif = new ExifInterface(filePath);
458 if (exif != null) {
459 thumbData = exif.getThumbnail();
MediaScanner.java 734 ExifInterface exif = null; local
736 exif = new ExifInterface(entry.mPath);
738 // exif is null
740 if (exif != null) {
742 if (exif.getLatLong(latlng)) {
747 long time = exif.getGpsDateTime();
752 int orientation = exif.getAttributeInt(
    [all...]
  /packages/apps/Camera/src/com/android/camera/
ImageManager.java 220 ExifInterface exif = null; local
222 exif = new ExifInterface(filepath);
224 Log.e(TAG, "cannot read exif", ex);
226 if (exif != null) {
227 int orientation = exif.getAttributeInt(
  /packages/apps/Gallery3D/src/com/cooliris/cache/
CacheService.java 427 // Returns -1 if we failed to examine EXIF information or EXIF parsing
434 Log.i(TAG, "Parsing date taken from exif");
435 final ExifInterface exif = new ExifInterface(item.mFilePath); local
436 final String dateTakenStr = exif.getAttribute(ExifInterface.TAG_DATETIME);
453 Log.i(TAG, "Error reading Exif information, probably not a jpeg.");
456 // Ensures that we only try retrieving EXIF date taken once.
    [all...]

Completed in 2761 milliseconds