Home | History | Annotate | Download | only in v2

Lines Matching defs:exif

48 import com.android.camera.exif.ExifInterface;
49 import com.android.camera.exif.ExifTag;
50 import com.android.camera.exif.Rational;
615 ExifInterface exif = new ExifInterface();
616 // TODO: Add more exif tags here.
621 exif.setTag(exif.buildTag(ExifInterface.TAG_PIXEL_X_DIMENSION, size.getWidth()));
622 exif.setTag(exif.buildTag(ExifInterface.TAG_PIXEL_Y_DIMENSION, size.getHeight()));
624 exif.setTag(
625 exif.buildTag(ExifInterface.TAG_ORIENTATION, ExifInterface.Orientation.TOP_LEFT));
629 ExifTag directionRefTag = exif.buildTag(ExifInterface.TAG_GPS_IMG_DIRECTION_REF,
632 exif.buildTag(ExifInterface.TAG_GPS_IMG_DIRECTION, new Rational(heading, 1));
633 exif.setTag(directionRefTag);
634 exif.setTag(directionTag);
636 new ExifUtil(exif).populateExif(Optional.<TaskImageContainer.TaskImage>absent(),
641 size.getWidth(), size.getHeight(), 0, exif);