D | ExifInterface.java | 937 private static class ExifTag { class in ExifInterface 943 private ExifTag(String name, int number, int format) { in ExifTag() method in ExifInterface.ExifTag 950 private ExifTag(String name, int number, int primaryFormat, int secondaryFormat) { in ExifTag() method in ExifInterface.ExifTag 959 private static final ExifTag[] IFD_TIFF_TAGS = new ExifTag[] { 961 new ExifTag(TAG_NEW_SUBFILE_TYPE, 254, IFD_FORMAT_ULONG), 962 new ExifTag(TAG_SUBFILE_TYPE, 255, IFD_FORMAT_ULONG), 963 new ExifTag(TAG_IMAGE_WIDTH, 256, IFD_FORMAT_USHORT, IFD_FORMAT_ULONG), 964 new ExifTag(TAG_IMAGE_LENGTH, 257, IFD_FORMAT_USHORT, IFD_FORMAT_ULONG), 965 new ExifTag(TAG_BITS_PER_SAMPLE, 258, IFD_FORMAT_USHORT), 966 new ExifTag(TAG_COMPRESSION, 259, IFD_FORMAT_USHORT), [all …]
|