Changeset 13061 in josm for trunk/src/com/drew/metadata/exif/ExifDirectoryBase.java
- Timestamp:
- 2017-10-30T22:46:09+01:00 (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/com/drew/metadata/exif/ExifDirectoryBase.java
r10862 r13061 1 1 /* 2 * Copyright 2002-201 6Drew Noakes2 * Copyright 2002-2017 Drew Noakes 3 3 * 4 4 * Licensed under the Apache License, Version 2.0 (the "License"); … … 31 31 * @author Drew Noakes https://drewnoakes.com 32 32 */ 33 @SuppressWarnings("WeakerAccess") 33 34 public abstract class ExifDirectoryBase extends Directory 34 35 { … … 126 127 127 128 public static final int TAG_RESOLUTION_UNIT = 0x0128; 129 public static final int TAG_PAGE_NUMBER = 0x0129; 130 128 131 public static final int TAG_TRANSFER_FUNCTION = 0x012D; 129 132 public static final int TAG_SOFTWARE = 0x0131; … … 149 152 public static final int TAG_JPEG_TABLES = 0x015B; 150 153 public static final int TAG_JPEG_PROC = 0x0200; 154 155 // 0x0201 can have all kinds of descriptions for thumbnail starting index 156 // 0x0202 can have all kinds of descriptions for thumbnail length 157 public static final int TAG_JPEG_RESTART_INTERVAL = 0x0203; 158 public static final int TAG_JPEG_LOSSLESS_PREDICTORS = 0x0205; 159 public static final int TAG_JPEG_POINT_TRANSFORMS = 0x0206; 160 public static final int TAG_JPEG_Q_TABLES = 0x0207; 161 public static final int TAG_JPEG_DC_TABLES = 0x0208; 162 public static final int TAG_JPEG_AC_TABLES = 0x0209; 151 163 152 164 public static final int TAG_YCBCR_COEFFICIENTS = 0x0211; … … 266 278 public static final int TAG_METERING_MODE = 0x9207; 267 279 280 /** 281 * @deprecated use {@link com.drew.metadata.exif.ExifDirectoryBase#TAG_WHITE_BALANCE} instead. 282 */ 283 @Deprecated 284 public static final int TAG_LIGHT_SOURCE = 0x9208; 268 285 /** 269 286 * White balance (aka light source). '0' means unknown, '1' daylight, … … 574 591 public static final int TAG_GAMMA = 0xA500; 575 592 576 public static final int TAG_PRINT_IM 593 public static final int TAG_PRINT_IMAGE_MATCHING_INFO = 0xC4A5; 577 594 578 595 public static final int TAG_PANASONIC_TITLE = 0xC6D2; … … 612 629 map.put(TAG_PAGE_NAME, "Page Name"); 613 630 map.put(TAG_RESOLUTION_UNIT, "Resolution Unit"); 631 map.put(TAG_PAGE_NUMBER, "Page Number"); 614 632 map.put(TAG_TRANSFER_FUNCTION, "Transfer Function"); 615 633 map.put(TAG_SOFTWARE, "Software"); … … 628 646 map.put(TAG_JPEG_TABLES, "JPEG Tables"); 629 647 map.put(TAG_JPEG_PROC, "JPEG Proc"); 648 649 map.put(TAG_JPEG_RESTART_INTERVAL, "JPEG Restart Interval"); 650 map.put(TAG_JPEG_LOSSLESS_PREDICTORS, "JPEG Lossless Predictors"); 651 map.put(TAG_JPEG_POINT_TRANSFORMS, "JPEG Point Transforms"); 652 map.put(TAG_JPEG_Q_TABLES, "JPEGQ Tables"); 653 map.put(TAG_JPEG_DC_TABLES, "JPEGDC Tables"); 654 map.put(TAG_JPEG_AC_TABLES, "JPEGAC Tables"); 655 630 656 map.put(TAG_YCBCR_COEFFICIENTS, "YCbCr Coefficients"); 631 657 map.put(TAG_YCBCR_SUBSAMPLING, "YCbCr Sub-Sampling"); … … 730 756 map.put(TAG_LENS_SERIAL_NUMBER, "Lens Serial Number"); 731 757 map.put(TAG_GAMMA, "Gamma"); 732 map.put(TAG_PRINT_IM, "Print I M");758 map.put(TAG_PRINT_IMAGE_MATCHING_INFO, "Print Image Matching (PIM) Info"); 733 759 map.put(TAG_PANASONIC_TITLE, "Panasonic Title"); 734 760 map.put(TAG_PANASONIC_TITLE_2, "Panasonic Title (2)");
Note:
See TracChangeset
for help on using the changeset viewer.