HomeSort by relevance Sort by last modified time
    Searched refs:ExifInterface (Results 51 - 75 of 90) sorted by null

1 23 4

  /packages/apps/Gallery/src/com/android/camera/
ImageManager.java 34 import android.media.ExifInterface;
251 ExifInterface exif = null;
253 exif = new ExifInterface(filepath);
259 ExifInterface.TAG_ORIENTATION, -1);
263 case ExifInterface.ORIENTATION_ROTATE_90:
266 case ExifInterface.ORIENTATION_ROTATE_180:
269 case ExifInterface.ORIENTATION_ROTATE_270:
MenuHelper.java 29 import android.media.ExifInterface;
175 ExifInterface exif = getExif(image);
220 ExifInterface exif) {
246 private static ExifInterface getExif(IImage image) {
252 return new ExifInterface(image.getDataPath());
270 ExifInterface exif = getExif(image);
316 ExifInterface exif = getExif(image);
322 String value = exif.getAttribute(ExifInterface.TAG_MAKE);
329 value = exif.getAttribute(ExifInterface.TAG_MODEL);
350 private static String getWhiteBalanceString(ExifInterface exif)
    [all...]
  /frameworks/base/packages/WallpaperCropper/src/com/android/photos/
BitmapRegionTileSource.java 36 import com.android.gallery3d.exif.ExifInterface;
169 ExifInterface ei = new ExifInterface();
171 Integer ori = ei.getTagIntValue(ExifInterface.TAG_ORIENTATION);
173 mRotation = ExifInterface.getRotationForOrientationValue(ori.shortValue());
219 public abstract boolean readExif(ExifInterface ei);
244 public boolean readExif(ExifInterface ei) {
301 public boolean readExif(ExifInterface ei) {
353 public boolean readExif(ExifInterface ei) {
  /packages/apps/Launcher3/WallpaperPicker/src/com/android/photos/
BitmapRegionTileSource.java 36 import com.android.gallery3d.exif.ExifInterface;
169 ExifInterface ei = new ExifInterface();
171 Integer ori = ei.getTagIntValue(ExifInterface.TAG_ORIENTATION);
173 mRotation = ExifInterface.getRotationForOrientationValue(ori.shortValue());
219 public abstract boolean readExif(ExifInterface ei);
244 public boolean readExif(ExifInterface ei) {
301 public boolean readExif(ExifInterface ei) {
353 public boolean readExif(ExifInterface ei) {
  /cts/tests/tests/hardware/src/android/hardware/camera2/cts/
StillCaptureTest.java 41 import android.media.ExifInterface;
110 // Some exif tags that are not defined by ExifInterface but supported.
    [all...]
  /packages/apps/Camera2/src/com/android/camera/one/v2/
OneCameraImpl.java 46 import com.android.camera.exif.ExifInterface;
408 ExifInterface exif = null;
410 exif = new ExifInterface();
413 Integer w = exif.getTagIntValue(ExifInterface.TAG_PIXEL_X_DIMENSION);
415 Integer h = exif.getTagIntValue(ExifInterface.TAG_PIXEL_Y_DIMENSION);
424 ExifInterface.TAG_GPS_IMG_DIRECTION_REF,
425 ExifInterface.GpsTrackRef.MAGNETIC_DIRECTION);
427 ExifInterface.TAG_GPS_IMG_DIRECTION,
OneCameraZslImpl.java 50 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,
    [all...]
  /packages/apps/Camera2/src/com/android/camera/session/
PlaceholderManager.java 29 import com.android.camera.exif.ExifInterface;
106 ExifInterface exif, byte[] jpeg, int width, int height, String mimeType) {
CaptureSessionManagerImpl.java 31 import com.android.camera.exif.ExifInterface;
161 ExifInterface exif, final OnMediaSavedListener listener) {
208 ExifInterface exif = null;
210 exif = new ExifInterface();
389 int width, int height, int orientation, ExifInterface exif,
  /packages/apps/Gallery2/src/com/android/photos/data/
PhotoProvider.java 28 import android.media.ExifInterface;
197 public static final String KEY_EXIF_MAKE = ExifInterface.TAG_MAKE;
199 public static final String KEY_EXIF_MODEL = ExifInterface.TAG_MODEL;;
201 public static final String KEY_EXIF_EXPOSURE = ExifInterface.TAG_EXPOSURE_TIME;
203 public static final String KEY_EXIF_FLASH = ExifInterface.TAG_FLASH;
205 public static final String KEY_EXIF_FOCAL_LENGTH = ExifInterface.TAG_FOCAL_LENGTH;
207 public static final String KEY_EXIF_FSTOP = ExifInterface.TAG_APERTURE;
209 public static final String KEY_EXIF_ISO = ExifInterface.TAG_ISO;
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/tools/
SaveImage.java 35 import com.android.gallery3d.exif.ExifInterface;
244 public ExifInterface getExifData(Uri source) {
245 ExifInterface exif = new ExifInterface();
266 public boolean putExifData(File file, ExifInterface exif, Bitmap image,
318 private void updateExifData(ExifInterface exif, long time) {
320 exif.addDateTimeStampTag(ExifInterface.TAG_DATE_TIME, time,
322 exif.setTag(exif.buildTag(ExifInterface.TAG_ORIENTATION,
323 ExifInterface.Orientation.TOP_LEFT));
357 ExifInterface exif = getExifData(newSourceUri)
    [all...]
  /packages/apps/Camera2/src/com/android/camera/
Storage.java 34 import com.android.camera.exif.ExifInterface;
81 Location location, int orientation, ExifInterface exif, byte[] jpeg, int width,
110 Location location, int orientation, ExifInterface exif, byte[] data, int width,
239 Location location, int orientation, ExifInterface exif,
266 private static long writeFile(String path, byte[] jpeg, ExifInterface exif) {
PhotoModule.java 56 import com.android.camera.exif.ExifInterface;
    [all...]
  /frameworks/base/core/java/android/provider/
DocumentsContract.java 33 import android.media.ExifInterface;
    [all...]
  /cts/tests/tests/hardware/src/android/hardware/cts/
CameraTest.java 34 import android.media.ExifInterface;
97 // Some exif tags that are not defined by ExifInterface but supported.
    [all...]
  /packages/apps/Camera2/src/com/android/camera/tinyplanet/
TinyPlanetFragment.java 48 import com.android.camera.exif.ExifInterface;
375 ExifInterface exif = new ExifInterface();
376 exif.addDateTimeStampTag(ExifInterface.TAG_DATE_TIME, System.currentTimeMillis(),
  /frameworks/base/packages/WallpaperCropper/src/com/android/gallery3d/exif/
ExifData.java 221 ExifTag tag = ifdData.getTag(ExifInterface.getTrueTagKey(ExifInterface.TAG_USER_COMMENT));
  /packages/apps/Camera2/src/com/android/camera/exif/
ExifData.java 221 ExifTag tag = ifdData.getTag(ExifInterface.getTrueTagKey(ExifInterface.TAG_USER_COMMENT));
  /packages/apps/Gallery2/gallerycommon/src/com/android/gallery3d/exif/
ExifData.java 221 ExifTag tag = ifdData.getTag(ExifInterface.getTrueTagKey(ExifInterface.TAG_USER_COMMENT));
  /packages/apps/Launcher3/WallpaperPicker/src/com/android/gallery3d/exif/
ExifData.java 221 ExifTag tag = ifdData.getTag(ExifInterface.getTrueTagKey(ExifInterface.TAG_USER_COMMENT));
  /packages/apps/LegacyCamera/src/com/android/camera/panorama/
PanoramaActivity.java 55 import android.media.ExifInterface;
    [all...]
  /packages/apps/Mms/src/com/android/mms/exif/
ExifData.java 223 ExifTag tag = ifdData.getTag(ExifInterface.getTrueTagKey(ExifInterface.TAG_USER_COMMENT));
  /packages/apps/Mms/src/com/android/mms/ui/
UriImage.java 39 import com.android.mms.exif.ExifInterface;
507 ExifInterface exif = new ExifInterface();
510 Integer val = exif.getTagIntValue(ExifInterface.TAG_ORIENTATION);
515 ExifInterface.getRotationForOrientationValue(val.shortValue());
  /frameworks/base/core/java/android/hardware/camera2/
DngCreator.java 24 import android.media.ExifInterface;
118 * <li>{@link android.media.ExifInterface#ORIENTATION_NORMAL}</li>
119 * <li>{@link android.media.ExifInterface#ORIENTATION_FLIP_HORIZONTAL}</li>
120 * <li>{@link android.media.ExifInterface#ORIENTATION_ROTATE_180}</li>
121 * <li>{@link android.media.ExifInterface#ORIENTATION_FLIP_VERTICAL}</li>
122 * <li>{@link android.media.ExifInterface#ORIENTATION_TRANSPOSE}</li>
123 * <li>{@link android.media.ExifInterface#ORIENTATION_ROTATE_90}</li>
124 * <li>{@link android.media.ExifInterface#ORIENTATION_TRANSVERSE}</li>
125 * <li>{@link android.media.ExifInterface#ORIENTATION_ROTATE_270}</li>
130 if (orientation < ExifInterface.ORIENTATION_UNDEFINED |
    [all...]
  /frameworks/base/packages/WallpaperCropper/src/com/android/wallpapercropper/
WallpaperCropActivity.java 47 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
    [all...]

Completed in 2345 milliseconds

1 23 4