Module java.desktop

Class TIFFImageReadParam

java.lang.Object
javax.imageio.IIOParam
javax.imageio.ImageReadParam
javax.imageio.plugins.tiff.TIFFImageReadParam

public final class TIFFImageReadParam extends ImageReadParam
A subclass of ImageReadParam allowing control over the TIFF reading process.

Because TIFF is an extensible format, the reader requires information about any tags used by TIFF extensions in order to emit meaningful metadata. Also, TIFF extensions may define new compression types. Both types of information about extensions may be provided by this interface.

Additional TIFF tags must be organized into TIFFTagSets. A TIFFTagSet may be provided to the reader by means of the addAllowedTagSet method. By default, the tag sets BaselineTIFFTagSet, FaxTIFFTagSet, ExifParentTIFFTagSet, and GeoTIFFTagSet are included.

Forcing reading of fields corresponding to TIFFTags not in any of the allowed TIFFTagSets may be effected via setReadUnknownTags.

Since:
9
  • Constructor Details

  • Method Details

    • addAllowedTagSet

      public void addAllowedTagSet(TIFFTagSet tagSet)
      Adds a TIFFTagSet object to the list of allowed tag sets. Attempting to add a duplicate object to the list has no effect.
      Parameters:
      tagSet - a TIFFTagSet.
      Throws:
      IllegalArgumentException - if tagSet is null.
    • removeAllowedTagSet

      public void removeAllowedTagSet(TIFFTagSet tagSet)
      Removes a TIFFTagSet object from the list of allowed tag sets. Removal is based on the equals method of the TIFFTagSet, which is normally defined as reference equality.
      Parameters:
      tagSet - a TIFFTagSet.
      Throws:
      IllegalArgumentException - if tagSet is null.
    • getAllowedTagSets

      public List<TIFFTagSet> getAllowedTagSets()
      Returns a List containing the allowed TIFFTagSet objects.
      Returns:
      a List of TIFFTagSets.
    • setReadUnknownTags

      public void setReadUnknownTags(boolean readUnknownTags)
      Set whether to read fields corresponding to TIFFTags not in the allowed TIFFTagSets. The default setting is false. If the TIFF ImageReader is ignoring metadata, then a setting of true is overridden as all metadata are ignored except those essential to reading the image itself.
      Parameters:
      readUnknownTags - Whether to read fields of unrecognized tags
    • getReadUnknownTags

      public boolean getReadUnknownTags()
      Retrieve the setting of whether to read fields corresponding to unknown TIFFTags.
      Returns:
      Whether to read fields of unrecognized tags