Uses of Class
javax.imageio.plugins.tiff.TIFFTag
-
Packages that use TIFFTag Package Description javax.imageio.plugins.tiff Public classes used by the built-in TIFF plug-ins. -
-
Uses of TIFFTag in javax.imageio.plugins.tiff
Methods in javax.imageio.plugins.tiff that return TIFFTag Modifier and Type Method Description TIFFTag
TIFFDirectory. getParentTag()
Returns the parentTIFFTag
of this directory if one has been defined ornull
otherwise.TIFFTag
TIFFDirectory. getTag(int tagNumber)
Returns theTIFFTag
which has tag number equal totagNumber
ornull
if no such tag exists in theTIFFTagSet
s associated with this directory.TIFFTag
TIFFField. getTag()
Retrieves the tag associated with this field.TIFFTag
TIFFTagSet. getTag(int tagNumber)
Returns theTIFFTag
from this set that is associated with the given tag number, ornull
if no tag exists for that number.TIFFTag
TIFFTagSet. getTag(String tagName)
Returns theTIFFTag
having the given tag name, ornull
if the named tag does not belong to this tag set.Constructors in javax.imageio.plugins.tiff with parameters of type TIFFTag Constructor Description TIFFDirectory(TIFFTagSet[] tagSets, TIFFTag parentTag)
Constructs aTIFFDirectory
which is aware of a given group ofTIFFTagSet
s.TIFFField(TIFFTag tag, int type, int count)
Constructs a data array usingcreateArrayForType()
and invokesTIFFField(TIFFTag,int,int,Object)
with the supplied parameters and the created array.TIFFField(TIFFTag tag, int type, int count, Object data)
Constructs aTIFFField
with arbitrary data.TIFFField(TIFFTag tag, int type, long offset, TIFFDirectory dir)
Constructs aTIFFField
with an IFD offset and contents.TIFFField(TIFFTag tag, long value)
Constructs aTIFFField
with a single non-negative integral value.Constructor parameters in javax.imageio.plugins.tiff with type arguments of type TIFFTag Constructor Description TIFFTagSet(List<TIFFTag> tags)
Constructs aTIFFTagSet
, given aList
ofTIFFTag
objects.
-