HomeSort by relevance Sort by last modified time
    Searched full:mexif (Results 1 - 3 of 3) sorted by null

  /packages/apps/Camera2/src/com/android/camera/util/
ExifUtil.java 40 private final ExifInterface mExif;
47 mExif = exif;
82 mExif.addGpsTags(location.getLatitude(), location.getLongitude());
83 mExif.addGpsDateTimeStampTag(location.getTime());
104 mExif.addDateTimeStampTag(ExifInterface.TAG_DATE_TIME, timestampMs, timezone);
105 mExif.addDateTimeStampTag(ExifInterface.TAG_DATE_TIME_DIGITIZED, timestampMs, timezone);
106 mExif.addDateTimeStampTag(ExifInterface.TAG_DATE_TIME_ORIGINAL, timestampMs, timezone);
121 mExif.setTag(mExif.buildTag(ExifInterface.TAG_PIXEL_X_DIMENSION, image.width));
122 mExif.setTag(mExif.buildTag(ExifInterface.TAG_PIXEL_Y_DIMENSION, image.height))
    [all...]
  /packages/apps/Gallery/src/com/android/camera/gallery/
Image.java 41 private ExifInterface mExif;
85 if (mExif == null) {
88 mExif.setAttribute(tag, value);
93 mExif = new ExifInterface(mDataPath);
100 if (mExif != null) {
101 mExif.saveAttributes();
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/imageshow/
MasterImage.java 116 private List<ExifTag> mEXIF;
200 mEXIF = ImageLoader.getExif(getActivity(), uri);
826 return mEXIF;

Completed in 1103 milliseconds