D | ExifInterface.java | 796 private static class ExifTag { class in ExifInterface 802 private ExifTag(String name, int number, int format) { in ExifTag() method in ExifInterface.ExifTag 809 private ExifTag(String name, int number, int primaryFormat, int secondaryFormat) { in ExifTag() method in ExifInterface.ExifTag 818 private static final ExifTag[] IFD_TIFF_TAGS = new ExifTag[] { 819 new ExifTag(TAG_IMAGE_WIDTH, 256, IFD_FORMAT_USHORT, IFD_FORMAT_ULONG), 820 new ExifTag(TAG_IMAGE_LENGTH, 257, IFD_FORMAT_USHORT, IFD_FORMAT_ULONG), 821 new ExifTag(TAG_BITS_PER_SAMPLE, 258, IFD_FORMAT_USHORT), 822 new ExifTag(TAG_COMPRESSION, 259, IFD_FORMAT_USHORT), 823 new ExifTag(TAG_PHOTOMETRIC_INTERPRETATION, 262, IFD_FORMAT_USHORT), 824 new ExifTag(TAG_IMAGE_DESCRIPTION, 270, IFD_FORMAT_STRING), [all …]
|