Uses of Class
com.github.jaiimageio.plugins.tiff.TIFFTagSet
-
Packages that use TIFFTagSet Package Description com.github.jaiimageio.plugins.tiff Package containing the public classes used by the TIFF plug-in for the Image I/O Framework. -
-
Uses of TIFFTagSet in com.github.jaiimageio.plugins.tiff
Subclasses of TIFFTagSet in com.github.jaiimageio.plugins.tiff Modifier and Type Class Description class
BaselineTIFFTagSet
A class representing the set of tags found in the baseline TIFF specification as well as some common additional tags.class
EXIFGPSTagSet
A class representing the tags found in an EXIF GPS Info IFD.class
EXIFInteroperabilityTagSet
A class representing the tags found in an EXIF Interoperability IFD.class
EXIFParentTIFFTagSet
A class containing the TIFF tags used to reference the EXIF and GPS IFDs.class
EXIFTIFFTagSet
A class representing the tags found in an EXIF IFD.class
FaxTIFFTagSet
A class representing the extra tags found in a TIFF-F (RFC 2036) file.class
GeoTIFFTagSet
A class representing the tags found in a GeoTIFF IFD.Fields in com.github.jaiimageio.plugins.tiff declared as TIFFTagSet Modifier and Type Field Description (package private) TIFFTagSet
TIFFTag. tagSet
Methods in com.github.jaiimageio.plugins.tiff that return TIFFTagSet Modifier and Type Method Description TIFFTagSet
TIFFTag. getTagSet()
Returns theTIFFTagSet
of which this tag is a part.TIFFTagSet[]
TIFFDirectory. getTagSets()
Returns theTIFFTagSet
s of which this directory is aware.Methods in com.github.jaiimageio.plugins.tiff with parameters of type TIFFTagSet Modifier and Type Method Description void
TIFFImageReadParam. addAllowedTagSet(TIFFTagSet tagSet)
Adds aTIFFTagSet
object to the list of allowed tag sets.void
TIFFDirectory. addTagSet(TIFFTagSet tagSet)
Adds an element to the group ofTIFFTagSet
s of which this directory is aware.static TIFFField
TIFFField. createFromMetadataNode(TIFFTagSet tagSet, org.w3c.dom.Node node)
Creates aTIFFField
from a TIFF native image metadata node.void
TIFFImageReadParam. removeAllowedTagSet(TIFFTagSet tagSet)
Removes aTIFFTagSet
object from the list of allowed tag sets.void
TIFFDirectory. removeTagSet(TIFFTagSet tagSet)
Removes an element from the group ofTIFFTagSet
s of which this directory is aware.Constructors in com.github.jaiimageio.plugins.tiff with parameters of type TIFFTagSet Constructor Description TIFFDirectory(TIFFTagSet[] tagSets, TIFFTag parentTag)
Constructs aTIFFDirectory
which is aware of a given group ofTIFFTagSet
s.TIFFTag(java.lang.String name, int number, int dataTypes, TIFFTagSet tagSet)
Constructs aTIFFTag
with a given name, tag number, set of legal data types, andTIFFTagSet
to which it refers.
-