Searched refs:ExifInterface (Results 51 - 61 of 61) sorted by relevance

123

/packages/apps/Camera2/src/com/android/camera/tinyplanet/
H A DTinyPlanetFragment.java48 import com.android.camera.exif.ExifInterface;
375 ExifInterface exif = new ExifInterface();
376 exif.addDateTimeStampTag(ExifInterface.TAG_DATE_TIME, System.currentTimeMillis(),
/packages/apps/Camera2/src/com/android/camera/exif/
H A DExifData.java221 ExifTag tag = ifdData.getTag(ExifInterface.getTrueTagKey(ExifInterface.TAG_USER_COMMENT));
/packages/apps/Camera2/src/com/android/camera/one/v2/
H A DOneCameraZslImpl.java50 import com.android.camera.exif.ExifInterface;
584 ExifInterface exif = null;
586 exif = new ExifInterface();
589 exif.setTag(exif.buildTag(ExifInterface.TAG_PIXEL_X_DIMENSION, width));
590 exif.setTag(exif.buildTag(ExifInterface.TAG_PIXEL_Y_DIMENSION, height));
597 ExifInterface.TAG_GPS_IMG_DIRECTION_REF,
598 ExifInterface.GpsTrackRef.MAGNETIC_DIRECTION);
600 ExifInterface.TAG_GPS_IMG_DIRECTION,
/packages/apps/Gallery2/gallerycommon/src/com/android/gallery3d/exif/
H A DExifData.java221 ExifTag tag = ifdData.getTag(ExifInterface.getTrueTagKey(ExifInterface.TAG_USER_COMMENT));
/packages/apps/Launcher3/WallpaperPicker/src/com/android/gallery3d/exif/
H A DExifData.java221 ExifTag tag = ifdData.getTag(ExifInterface.getTrueTagKey(ExifInterface.TAG_USER_COMMENT));
/packages/apps/LegacyCamera/src/com/android/camera/panorama/
H A DPanoramaActivity.java55 import android.media.ExifInterface;
957 ExifInterface exif = new ExifInterface(filepath);
958 exif.setAttribute(ExifInterface.TAG_ORIENTATION,
973 return String.valueOf(ExifInterface.ORIENTATION_NORMAL);
975 return String.valueOf(ExifInterface.ORIENTATION_ROTATE_90);
977 return String.valueOf(ExifInterface.ORIENTATION_ROTATE_180);
979 return String.valueOf(ExifInterface.ORIENTATION_ROTATE_270);
/packages/apps/Mms/src/com/android/mms/exif/
H A DExifData.java223 ExifTag tag = ifdData.getTag(ExifInterface.getTrueTagKey(ExifInterface.TAG_USER_COMMENT));
/packages/apps/Mms/src/com/android/mms/ui/
H A DUriImage.java39 import com.android.mms.exif.ExifInterface;
507 ExifInterface exif = new ExifInterface();
510 Integer val = exif.getTagIntValue(ExifInterface.TAG_ORIENTATION);
515 ExifInterface.getRotationForOrientationValue(val.shortValue());
/packages/apps/Camera2/src/com/android/camera/
H A DPhotoModule.java58 import com.android.camera.exif.ExifInterface;
981 ExifInterface exif;
991 final ExifInterface exif = dataBundle.exif;
1015 exif.setTagValue(ExifInterface.TAG_PIXEL_X_DIMENSION, new Integer(newWidth));
1016 exif.setTagValue(ExifInterface.TAG_PIXEL_Y_DIMENSION, new Integer(newHeight));
1075 final ExifInterface exif = Exif.getExif(originalJpegData);
1100 void saveFinalPhoto(final byte[] jpegData, final ExifInterface exif, CameraProxy camera) {
1123 Integer exifWidth = exif.getTagIntValue(ExifInterface.TAG_PIXEL_X_DIMENSION);
1124 Integer exifHeight = exif.getTagIntValue(ExifInterface.TAG_PIXEL_Y_DIMENSION);
1164 ExifInterface
[all...]
H A DVideoModule.java59 import com.android.camera.exif.ExifInterface;
1883 ExifInterface exif = Exif.getExif(data);
/packages/apps/Launcher3/WallpaperPicker/src/com/android/launcher3/
H A DWallpaperCropActivity.java47 import com.android.gallery3d.exif.ExifInterface;
280 ExifInterface ei = new ExifInterface();
295 Integer ori = ei.getTagIntValue(ExifInterface.TAG_ORIENTATION);
297 return ExifInterface.getRotationForOrientationValue(ori.shortValue());
302 // Sometimes the ExifInterface has an internal NPE if Exif data isn't valid

Completed in 756 milliseconds

123