Searched refs:TIFFTag (Results 1 - 25 of 27) sorted by relevance

12

/openjdk9/jdk/src/java.desktop/share/classes/javax/imageio/plugins/tiff/
H A DExifGPSTagSet.java36 * definitions may be found in the {@link TIFFTag TIFFTag} class.
413 static class GPSVersionID extends TIFFTag {
417 1 << TIFFTag.TIFF_BYTE);
421 static class GPSLatitudeRef extends TIFFTag {
425 1 << TIFFTag.TIFF_ASCII);
429 static class GPSLatitude extends TIFFTag {
433 1 << TIFFTag.TIFF_RATIONAL);
437 static class GPSLongitudeRef extends TIFFTag {
441 1 << TIFFTag
[all...]
H A DGeoTIFFTagSet.java37 * definitions may be found in the {@link TIFFTag TIFFTag} class.</p>
71 static class ModelPixelScale extends TIFFTag {
75 1 << TIFFTag.TIFF_DOUBLE);
79 static class ModelTransformation extends TIFFTag {
83 1 << TIFFTag.TIFF_DOUBLE);
87 static class ModelTiepoint extends TIFFTag {
91 1 << TIFFTag.TIFF_DOUBLE);
95 static class GeoKeyDirectory extends TIFFTag {
99 1 << TIFFTag
[all...]
H A DExifTIFFTagSet.java40 * definitions may be found in the {@link TIFFTag TIFFTag} class.
1252 static class ExifVersion extends TIFFTag {
1257 1 << TIFFTag.TIFF_UNDEFINED,
1262 static class FlashPixVersion extends TIFFTag {
1267 1 << TIFFTag.TIFF_UNDEFINED,
1272 static class ColorSpace extends TIFFTag {
1277 1 << TIFFTag.TIFF_SHORT,
1285 static class ComponentsConfiguration extends TIFFTag {
1290 1 << TIFFTag
[all...]
H A DTIFFField.java68 * {@link TIFFTag#TIFF_BYTE}
83 * {@link TIFFTag#TIFF_ASCII}
98 * {@link TIFFTag#TIFF_SHORT}
113 * {@link TIFFTag#TIFF_LONG}
128 * {@link TIFFTag#TIFF_RATIONAL}
143 * {@link TIFFTag#TIFF_SBYTE}
158 * {@link TIFFTag#TIFF_UNDEFINED}
173 * {@link TIFFTag#TIFF_SSHORT}
188 * {@link TIFFTag#TIFF_SLONG}
203 * {@link TIFFTag#TIFF_SRATIONA
[all...]
H A DExifInteroperabilityTagSet.java68 static class InteroperabilityIndex extends TIFFTag {
73 1 << TIFFTag.TIFF_ASCII);
77 private static List<TIFFTag> tags;
80 tags = new ArrayList<TIFFTag>(42);
H A DExifParentTIFFTagSet.java51 static class ExifIFDPointer extends TIFFTag {
61 static class GPSInfoIFDPointer extends TIFFTag {
70 private static List<TIFFTag> tags;
73 tags = new ArrayList<TIFFTag>(1);
H A DTIFFTagSet.java41 * between raw tag numbers and {@code TIFFTag} objects, which
47 * @see TIFFTag
51 private SortedMap<Integer,TIFFTag> allowedTagsByNumber = new TreeMap<Integer,TIFFTag>();
53 private SortedMap<String,TIFFTag> allowedTagsByName = new TreeMap<String,TIFFTag>();
62 * of {@code TIFFTag} objects.
65 * {@code TIFFTag} objects to be added to this tag set.
69 * of the {@code TIFFTag} class.
71 public TIFFTagSet(List<TIFFTag> tag
[all...]
H A DFaxTIFFTagSet.java80 static class BadFaxLines extends TIFFTag {
91 static class CleanFaxData extends TIFFTag {
108 static class ConsecutiveBadFaxLines extends TIFFTag {
119 private static List<TIFFTag> tags;
122 tags = new ArrayList<TIFFTag>(42);
H A DBaselineTIFFTagSet.java1022 static class Artist extends TIFFTag {
1033 static class BitsPerSample extends TIFFTag {
1044 static class CellLength extends TIFFTag {
1056 static class CellWidth extends TIFFTag {
1068 static class ColorMap extends TIFFTag {
1079 static class Compression extends TIFFTag {
1109 static class Copyright extends TIFFTag {
1120 static class DateTime extends TIFFTag {
1132 static class DocumentName extends TIFFTag {
1143 static class DotRange extends TIFFTag {
[all...]
H A DTIFFTag.java48 public class TIFFTag { class
144 * Constructs a {@code TIFFTag} with a given name, tag number, set
169 public TIFFTag(String name, int number, int dataTypes, int count) { method in class:TIFFTag
186 * Constructs a {@code TIFFTag} with a given name, tag number and
190 * represent the set of {@code TIFFTag}s which appear in the IFD
191 * pointed to. A {@code TIFFTag} represents an IFD pointer if and
201 * @see #TIFFTag(String, int, int, int)
203 public TIFFTag(String name, int number, TIFFTagSet tagSet) { method in class:TIFFTag
205 1 << TIFFTag.TIFF_LONG | 1 << TIFFTag
227 public TIFFTag(String name, int number, int dataTypes) { method in class:TIFFTag
[all...]
H A DTIFFDirectory.java69 * <p>A {@code TIFFDirectory} might also have a parent {@link TIFFTag}.
73 * {@link TIFFTag#isIFDPointer} method of this parent {@code TIFFTag}
101 * @see TIFFTag
113 /** The parent {@code TIFFTag} of this directory. */
114 private TIFFTag parentTag;
208 * group of {@link TIFFTagSet}s. An optional parent {@link TIFFTag}
213 * @param parentTag The parent {@code TIFFTag} of this directory;
218 public TIFFDirectory(TIFFTagSet[] tagSets, TIFFTag parentTag) {
277 * Returns the parent {@link TIFFTag} o
[all...]
/openjdk9/jdk/test/javax/imageio/plugins/tiff/
H A DTIFFTagSetTest.java28 * @summary Some checks for TIFFTag, TIFFTagSet
44 new TIFFTagSet(new ArrayList<TIFFTag>());
65 static class Tag1 extends TIFFTag {
74 static class Tag2 extends TIFFTag {
85 static class Tag3 extends TIFFTag {
93 private static List<TIFFTag> tags;
97 tags = new ArrayList<TIFFTag>();
159 TIFFTag tagByName = tagSet.getTag(tagName);
163 TIFFTag tagByNum = tagSet.getTag(tagByName.getNumber());
167 !tagByName.isDataTypeOK(TIFFTag
[all...]
H A DTIFFFieldTest.java43 private final static int MIN_TYPE = TIFFTag.MIN_DATATYPE;
44 private final static int MAX_TYPE = TIFFTag.MAX_DATATYPE;
55 TIFFTag tag = new TIFFTag(
56 NAME, NUM, 1 << TIFFTag.TIFF_SHORT | 1 << TIFFTag.TIFF_LONG);
77 TIFFTag t = new TIFFTag(NAME, NUM, 1 << TIFFTag.TIFF_SHORT);
84 TIFFTag
[all...]
H A DTIFFDirectoryWriteReadTest.java84 new TIFFTag(name, num, 1 << TIFFTag.TIFF_ASCII),
85 TIFFTag.TIFF_ASCII, data.length, data));
96 check(f.getType() == TIFFTag.TIFF_ASCII, "field type != ASCII");
134 new TIFFTag("XResolution", BaselineTIFFTagSet.TAG_X_RESOLUTION,
135 1 << TIFFTag.TIFF_RATIONAL), TIFFTag.TIFF_RATIONAL, 1, RES_X));
137 new TIFFTag("YResolution", BaselineTIFFTagSet.TAG_Y_RESOLUTION,
138 1 << TIFFTag.TIFF_RATIONAL), TIFFTag
[all...]
H A DTIFFCreateArrayForTypeTest.java33 import javax.imageio.plugins.tiff.TIFFTag;
61 TIFFField.createArrayForType(TIFFTag.TIFF_LONG, count);
75 * TIFFTag.TIFF_RATIONAL or TIFFTag.TIFF_SRATIONAL data type.
79 TIFFField.createArrayForType(TIFFTag.TIFF_RATIONAL, count);
93 * TIFFTag.TIFF_IFD_POINTER data type.
97 TIFFField.createArrayForType(TIFFTag.TIFF_IFD_POINTER, count);
H A DIFDTest.java77 int type = TIFFTag.TIFF_IFD_POINTER;
79 TIFFTag tag = new TIFFTag("Exif IFD", nTag, 1 << type);
H A DTIFFDirectoryTest.java46 int type = TIFFTag.TIFF_LONG, dt = 1 << type;
49 TIFFTag tag1 = new TIFFTag(Integer.toString(n1), n1, dt);
50 TIFFTag tag2 = new TIFFTag(Integer.toString(n2), n2, dt);
51 TIFFTag tag3 = new TIFFTag(Integer.toString(n3), n3, dt);
52 TIFFTag parent = new TIFFTag(Integer.toString(n0), n0, dt);
69 List<TIFFTag> tag
[all...]
H A DMultiPageImageTIFFFieldTest.java113 new TIFFTag(name, num, 1 << TIFFTag.TIFF_ASCII),
114 TIFFTag.TIFF_ASCII, data.length, data));
125 check(f.getType() == TIFFTag.TIFF_ASCII, "field type != ASCII");
184 TIFFTag faxTag = new TIFFTag(
185 "CleanFaxData", N_FAX, 1 << TIFFTag.TIFF_SHORT);
190 new TIFFTag("ICC Profile", N_ICC, 1 << TIFFTag.TIFF_UNDEFINED),
191 TIFFTag
[all...]
H A DTIFFImageReadParamTest.java95 new TIFFTag(name, num, 1 << TIFFTag.TIFF_ASCII),
96 TIFFTag.TIFF_ASCII, 1, a));
105 check(f.getType() == TIFFTag.TIFF_ASCII, "field type != ASCII");
136 dir.addTIFFField(new TIFFField(new TIFFTag(
137 "CleanFaxData", FAX_N, 1 << TIFFTag.TIFF_SHORT), FAX_DATA));
H A DReadUnknownTagsTest.java108 TIFFTag descTag =
110 dir.addTIFFField(new TIFFField(descTag, TIFFTag.TIFF_ASCII, 1,
113 TIFFTag faxTag = FaxTIFFTagSet.getInstance().getTag(FAX_TAG);
/openjdk9/jdk/src/java.desktop/share/classes/com/sun/imageio/plugins/tiff/
H A DTIFFIFD.java41 import javax.imageio.plugins.tiff.TIFFTag;
113 TIFFTag tag = f.getTag();
137 public static TIFFTag getTag(int tagNumber, List<TIFFTagSet> tagSets) {
141 TIFFTag tag = tagSet.getTag(tagNumber);
150 public static TIFFTag getTag(String tagName, List<TIFFTagSet> tagSets) {
154 TIFFTag tag = tagSet.getTag(tagName);
170 case TIFFTag.TIFF_ASCII:
180 case TIFFTag.TIFF_UNDEFINED:
181 case TIFFTag.TIFF_BYTE:
182 case TIFFTag
[all...]
H A DTIFFJPEGCompressor.java29 import javax.imageio.plugins.tiff.TIFFTag;
139 TIFFTag.TIFF_SHORT, 2,
146 TIFFTag.TIFF_SHORT, 1,
154 TIFFTag.TIFF_RATIONAL, 6,
242 TIFFTag.TIFF_UNDEFINED,
H A DTIFFFieldNode.java33 import javax.imageio.plugins.tiff.TIFFTag;
44 (type == TIFFTag.TIFF_LONG || type == TIFFTag.TIFF_IFD_POINTER);
64 TIFFTag tag = field.getTag();
109 TIFFTag tag = TIFFIFD.getTag(tagNumber, tagSetList);
121 if (field.getType() == TIFFTag.TIFF_UNDEFINED) {
138 TIFFTag tag = field.getTag();
H A DTIFFImageMetadata.java48 import javax.imageio.plugins.tiff.TIFFTag;
130 TIFFTag tag = TIFFIFD.getTag(tagNumber, tagSets);
783 TIFFTag tag;
883 f = new TIFFField(tag, TIFFTag.TIFF_SHORT,
1001 f = new TIFFField(tag, TIFFTag.TIFF_SHORT, 1,
1004 f = new TIFFField(tag, TIFFTag.TIFF_SHORT,
1067 TIFFTag.TIFF_SHORT,
1131 TIFFTag.TIFF_RATIONAL,
1147 TIFFTag.TIFF_RATIONAL,
1161 TIFFTag
[all...]
H A DTIFFT6Compressor.java29 import javax.imageio.plugins.tiff.TIFFTag;
168 TIFFTag.TIFF_LONG,

Completed in 140 milliseconds

12