Uses of Class
javax.imageio.plugins.tiff.TIFFTagSet
-
Packages that use TIFFTagSet Package Description javax.imageio.plugins.tiff Public classes used by the built-in TIFF plug-ins. -
-
Uses of TIFFTagSet in javax.imageio.plugins.tiff
Subclasses of TIFFTagSet in javax.imageio.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.Methods in javax.imageio.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 javax.imageio.plugins.tiff that return types with arguments of type TIFFTagSet Modifier and Type Method Description List<TIFFTagSet>
TIFFImageReadParam. getAllowedTagSets()
Returns aList
containing the allowedTIFFTagSet
objects.Methods in javax.imageio.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, 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 javax.imageio.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(String name, int number, TIFFTagSet tagSet)
Constructs aTIFFTag
with a given name, tag number andTIFFTagSet
to which it refers.
-