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

123

/packages/apps/Camera2/src/com/android/camera/util/
H A DImageLoader.java33 import com.android.camera.exif.ExifInterface;
49 public static final int ORI_NORMAL = ExifInterface.Orientation.TOP_LEFT;
50 public static final int ORI_ROTATE_90 = ExifInterface.Orientation.RIGHT_TOP;
51 public static final int ORI_ROTATE_180 = ExifInterface.Orientation.BOTTOM_LEFT;
52 public static final int ORI_ROTATE_270 = ExifInterface.Orientation.RIGHT_BOTTOM;
53 public static final int ORI_FLIP_HOR = ExifInterface.Orientation.TOP_RIGHT;
54 public static final int ORI_FLIP_VERT = ExifInterface.Orientation.BOTTOM_RIGHT;
55 public static final int ORI_TRANSPOSE = ExifInterface.Orientation.LEFT_TOP;
56 public static final int ORI_TRANSVERSE = ExifInterface.Orientation.LEFT_BOTTOM;
130 ExifInterface exi
[all...]
/packages/apps/Camera2/src/com/android/camera/exif/
H A DExifReader.java31 private final ExifInterface mInterface;
33 ExifReader(ExifInterface iRef) {
H A DExifModifier.java34 private final ExifInterface mInterface;
47 protected ExifModifier(ByteBuffer byteBuffer, ExifInterface iRef) throws IOException,
61 ExifInterface.closeSilently(is);
135 ExifInterface.closeSilently(is);
H A DIfdData.java139 if (ExifInterface.isOffsetTag(tag.getTagId())) {
/packages/apps/Gallery2/gallerycommon/src/com/android/gallery3d/exif/
H A DExifReader.java31 private final ExifInterface mInterface;
33 ExifReader(ExifInterface iRef) {
H A DExifModifier.java35 private final ExifInterface mInterface;
48 protected ExifModifier(ByteBuffer byteBuffer, ExifInterface iRef) throws IOException,
62 ExifInterface.closeSilently(is);
136 ExifInterface.closeSilently(is);
H A DIfdData.java139 if (ExifInterface.isOffsetTag(tag.getTagId())) {
/packages/apps/Launcher3/WallpaperPicker/src/com/android/gallery3d/exif/
H A DExifReader.java31 private final ExifInterface mInterface;
33 ExifReader(ExifInterface iRef) {
H A DExifModifier.java34 private final ExifInterface mInterface;
47 protected ExifModifier(ByteBuffer byteBuffer, ExifInterface iRef) throws IOException,
61 ExifInterface.closeSilently(is);
135 ExifInterface.closeSilently(is);
H A DIfdData.java139 if (ExifInterface.isOffsetTag(tag.getTagId())) {
/packages/apps/Mms/src/com/android/mms/exif/
H A DExifReader.java33 private final ExifInterface mInterface;
35 ExifReader(ExifInterface iRef) {
H A DExifModifier.java36 private final ExifInterface mInterface;
49 protected ExifModifier(ByteBuffer byteBuffer, ExifInterface iRef) throws IOException,
63 ExifInterface.closeSilently(is);
137 ExifInterface.closeSilently(is);
H A DIfdData.java139 if (ExifInterface.isOffsetTag(tag.getTagId())) {
/packages/apps/Camera2/src/com/android/camera/
H A DMediaSaverImpl.java29 import com.android.camera.exif.ExifInterface;
59 int height, int orientation, ExifInterface exif, OnMediaSavedListener l,
78 ExifInterface exif, OnMediaSavedListener l, ContentResolver resolver) {
85 int orientation, ExifInterface exif, OnMediaSavedListener l,
127 private final ExifInterface exif;
132 int width, int height, int orientation, ExifInterface exif,
H A DStorage.java34 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) {
/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/cache/
H A DImageLoader.java39 import com.android.gallery3d.exif.ExifInterface;
58 public static final int ORI_NORMAL = ExifInterface.Orientation.TOP_LEFT;
59 public static final int ORI_ROTATE_90 = ExifInterface.Orientation.RIGHT_TOP;
60 public static final int ORI_ROTATE_180 = ExifInterface.Orientation.BOTTOM_LEFT;
61 public static final int ORI_ROTATE_270 = ExifInterface.Orientation.RIGHT_BOTTOM;
62 public static final int ORI_FLIP_HOR = ExifInterface.Orientation.TOP_RIGHT;
63 public static final int ORI_FLIP_VERT = ExifInterface.Orientation.BOTTOM_RIGHT;
64 public static final int ORI_TRANSPOSE = ExifInterface.Orientation.LEFT_TOP;
65 public static final int ORI_TRANSVERSE = ExifInterface.Orientation.LEFT_BOTTOM;
132 ExifInterface exi
[all...]
/packages/apps/Gallery2/src/com/android/gallery3d/data/
H A DLocalImage.java37 import com.android.gallery3d.exif.ExifInterface;
197 ExifInterface exif = new ExifInterface();
284 ExifInterface exifInterface = new ExifInterface();
285 ExifTag tag = exifInterface.buildTag(ExifInterface.TAG_ORIENTATION,
286 ExifInterface.getOrientationValueForRotation(rotation));
299 Log.w(TAG, "Could not build tag: " + ExifInterface.TAG_ORIENTATION);
324 // ExifInterface returns incorrect values for photos in other format.
/packages/apps/Gallery/src/com/android/camera/
H A DImageManager.java34 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:
H A DMenuHelper.java29 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 exi
[all...]
/packages/apps/Launcher3/WallpaperPicker/src/com/android/photos/
H A DBitmapRegionTileSource.java36 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/Camera2/src/com/android/camera/one/v2/
H A DOneCameraImpl.java46 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,
/packages/apps/Camera2/src/com/android/camera/session/
H A DPlaceholderManager.java29 import com.android.camera.exif.ExifInterface;
106 ExifInterface exif, byte[] jpeg, int width, int height, String mimeType) {
H A DCaptureSessionManagerImpl.java31 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/
H A DPhotoProvider.java28 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/
H A DSaveImage.java35 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 exi
[all...]

Completed in 1370 milliseconds

123