TMI-TIFF: New tag + fixed spelling for tag.

This commit is contained in:
Harald Kuhr 2013-01-31 15:40:08 +01:00
parent 47fbf473db
commit f666610184
3 changed files with 4 additions and 3 deletions

View File

@ -147,7 +147,7 @@ final class EXIFThumbnailReader extends ThumbnailReader {
} }
Entry bitsPerSample = ifd.getEntryById(TIFF.TAG_BITS_PER_SAMPLE); Entry bitsPerSample = ifd.getEntryById(TIFF.TAG_BITS_PER_SAMPLE);
Entry samplesPerPixel = ifd.getEntryById(TIFF.TAG_SAMPLES_PER_PIXELS); Entry samplesPerPixel = ifd.getEntryById(TIFF.TAG_SAMPLES_PER_PIXEL);
Entry photometricInterpretation = ifd.getEntryById(TIFF.TAG_PHOTOMETRIC_INTERPRETATION); Entry photometricInterpretation = ifd.getEntryById(TIFF.TAG_PHOTOMETRIC_INTERPRETATION);
// Required // Required

View File

@ -88,7 +88,7 @@ final class EXIFEntry extends AbstractEntry {
return "StripOffsets"; return "StripOffsets";
case TIFF.TAG_ORIENTATION: case TIFF.TAG_ORIENTATION:
return "Orientation"; return "Orientation";
case TIFF.TAG_SAMPLES_PER_PIXELS: case TIFF.TAG_SAMPLES_PER_PIXEL:
return "SamplesPerPixels"; return "SamplesPerPixels";
case TIFF.TAG_ROWS_PER_STRIP: case TIFF.TAG_ROWS_PER_STRIP:
return "RowsPerStrip"; return "RowsPerStrip";

View File

@ -99,7 +99,7 @@ public interface TIFF {
int TAG_COMPRESSION = 259; int TAG_COMPRESSION = 259;
int TAG_PHOTOMETRIC_INTERPRETATION = 262; int TAG_PHOTOMETRIC_INTERPRETATION = 262;
int TAG_ORIENTATION = 274; int TAG_ORIENTATION = 274;
int TAG_SAMPLES_PER_PIXELS = 277; int TAG_SAMPLES_PER_PIXEL = 277;
int TAG_PLANAR_CONFIGURATION = 284; int TAG_PLANAR_CONFIGURATION = 284;
int TAG_SAMPLE_FORMAT = 339; int TAG_SAMPLE_FORMAT = 339;
int TAG_YCBCR_SUB_SAMPLING = 530; int TAG_YCBCR_SUB_SAMPLING = 530;
@ -124,6 +124,7 @@ public interface TIFF {
int TAG_PRIMARY_CHROMATICITIES = 319; int TAG_PRIMARY_CHROMATICITIES = 319;
int TAG_COLOR_MAP = 320; int TAG_COLOR_MAP = 320;
int TAG_EXTRA_SAMPLES = 338; int TAG_EXTRA_SAMPLES = 338;
int TAG_TRANSFER_RANGE = 342;
int TAG_YCBCR_COEFFICIENTS = 529; int TAG_YCBCR_COEFFICIENTS = 529;
int TAG_REFERENCE_BLACK_WHITE = 532; int TAG_REFERENCE_BLACK_WHITE = 532;