Class TiffImageParser

    • Field Detail

      • DEFAULT_EXTENSION

        private static final java.lang.String DEFAULT_EXTENSION
        See Also:
        Constant Field Values
      • ACCEPTED_EXTENSIONS

        private static final java.lang.String[] ACCEPTED_EXTENSIONS
    • Constructor Detail

      • TiffImageParser

        public TiffImageParser()
    • Method Detail

      • getName

        public java.lang.String getName()
        Description copied from class: ImageParser
        Get a descriptive name for the implementation of an ImageParser.
        Specified by:
        getName in class ImageParser
        Returns:
        a valid, subject-matter-specific string.
      • getDefaultExtension

        public java.lang.String getDefaultExtension()
        Description copied from class: ImageParser
        Get the default extension for the format specified by an implementation of ImageParser. Some parsers can support more than one extension (i.e. .JPEG, .JPG; .TIF, .TIFF, etc.).
        Specified by:
        getDefaultExtension in class ImageParser
        Returns:
        A valid string.
      • getAcceptedExtensions

        protected java.lang.String[] getAcceptedExtensions()
        Description copied from class: ImageParser
        Get an array of all accepted extensions
        Specified by:
        getAcceptedExtensions in class ImageParser
        Returns:
        A valid array of one or more elements.
      • getAcceptedTypes

        protected ImageFormat[] getAcceptedTypes()
        Description copied from class: ImageParser
        Get an array of ImageFormat objects describing all accepted types
        Specified by:
        getAcceptedTypes in class ImageParser
        Returns:
        A valid array of one or more elements.
      • getICCProfileBytes

        public byte[] getICCProfileBytes​(ByteSource byteSource,
                                         java.util.Map<java.lang.String,​java.lang.Object> params)
                                  throws ImageReadException,
                                         java.io.IOException
        Description copied from class: ImageParser
        Get an array of bytes describing the International Color Consortium (ICC) specification for the color space of the image contained in the input byteSource. Not all formats support ICC profiles.
        Specified by:
        getICCProfileBytes in class ImageParser
        Parameters:
        byteSource - A valid ByteSource.
        params - Optional instructions for special-handling or interpretation of the input data.
        Returns:
        If available, a valid array of bytes; otherwise, a null
        Throws:
        ImageReadException - In the event that the specified content does not conform to the format of the specific parser implementation.
        java.io.IOException - In the event of unsuccessful read or access operation.
      • getImageSize

        public java.awt.Dimension getImageSize​(ByteSource byteSource,
                                               java.util.Map<java.lang.String,​java.lang.Object> params)
                                        throws ImageReadException,
                                               java.io.IOException
        Description copied from class: ImageParser
        Get the size of the image described by the specified ByteSource.
        Specified by:
        getImageSize in class ImageParser
        Parameters:
        byteSource - A valid reference to a ByteSource.
        params - Optional instructions for special-handling or interpretation of the input data.
        Returns:
        A valid instance of Dimension.
        Throws:
        ImageReadException - In the event that the specified content does not conform to the format of the specific parser implementation.
        java.io.IOException - In the event of unsuccessful read or access operation.
      • getMetadata

        public ImageMetadata getMetadata​(ByteSource byteSource,
                                         java.util.Map<java.lang.String,​java.lang.Object> params)
                                  throws ImageReadException,
                                         java.io.IOException
        Description copied from class: ImageParser
        Get image metadata from the specified byte source. Format-specific ImageParser implementations are expected to return a valid IImageMetadata object or to throw an ImageReadException if unable to process the specified byte source.

        The params argument provides a mechanism for individual implementations to pass optional information into the parser. Not all formats will require this capability. Because the base class may call this method with a null params argument, implementations should always include logic for ignoring null input.

        Specified by:
        getMetadata in class ImageParser
        Parameters:
        byteSource - A valid byte source.
        params - Optional instructions for special-handling or interpretation of the input data (null objects are permitted and must be supported by implementations).
        Returns:
        A valid, potentially subject-matter-specific implementation of the IImageMetadata interface describing the content extracted from the source content.
        Throws:
        ImageReadException - In the event that the ByteSource content does not conform to the format of the specific parser implementation.
        java.io.IOException - In the event of unsuccessful data read operation.
      • getImageInfo

        public ImageInfo getImageInfo​(ByteSource byteSource,
                                      java.util.Map<java.lang.String,​java.lang.Object> params)
                               throws ImageReadException,
                                      java.io.IOException
        Description copied from class: ImageParser
        Get image information from the specified ByteSource. Format-specific ImageParser implementations are expected to return a valid ImageInfo object or to throw an ImageReadException if unable to process the specified data.

        The params argument provides a mechanism for individual implementations to pass optional information into the parser. Not all formats will require this capability. Because the base class may call this method with a null params argument, implementations should always include logic for ignoring null input.

        Specified by:
        getImageInfo in class ImageParser
        Parameters:
        byteSource - A valid ByteSource object
        params - Optional instructions for special-handling or interpretation of the input data (null objects are permitted and must be supported by implementations).
        Returns:
        A valid image information object describing the content extracted from the specified data.
        Throws:
        ImageReadException - In the event that the specified content does not conform to the format of the specific parser implementation.
        java.io.IOException - In the event of unsuccessful data access operation.
      • getXmpXml

        public java.lang.String getXmpXml​(ByteSource byteSource,
                                          java.util.Map<java.lang.String,​java.lang.Object> params)
                                   throws ImageReadException,
                                          java.io.IOException
        Description copied from interface: XmpEmbeddable
        Get a string containing XML-formatted text conforming to the Extensible Metadata Platform (EXP) standard for representing information about image content. Not all image formats support EXP information and even for those that do, there is no guarantee that such information will be present in an image.
        Specified by:
        getXmpXml in interface XmpEmbeddable
        Parameters:
        byteSource - A valid reference to a ByteSource.
        params - Optional instructions for special-handling or interpretation of the input data.
        Returns:
        If XMP metadata is present, a valid string; if it is not present, a null.
        Throws:
        ImageReadException - In the event that the specified content does not conform to the format of the specific parser implementation.
        java.io.IOException - In the event of unsuccessful read or access operation.
      • dumpImageFile

        public boolean dumpImageFile​(java.io.PrintWriter pw,
                                     ByteSource byteSource)
                              throws ImageReadException,
                                     java.io.IOException
        Description copied from class: ImageParser
        Write the ImageInfo and format-specific information for the image content of the specified byte source to a PrintWriter
        Overrides:
        dumpImageFile in class ImageParser
        Parameters:
        pw - print writer used for writing the ImageInfo
        byteSource - A valid byte source.
        Returns:
        A valid PrintWriter.
        Throws:
        ImageReadException - In the event that the specified content does not conform to the format of the specific parser implementation.
        java.io.IOException - In the event of unsuccessful read or access operation.
      • getFormatCompliance

        public FormatCompliance getFormatCompliance​(ByteSource byteSource)
                                             throws ImageReadException,
                                                    java.io.IOException
        Description copied from class: ImageParser
        Determines the format compliance of the content of the supplied byte source based on rules provided by a specific implementation.
        Overrides:
        getFormatCompliance in class ImageParser
        Parameters:
        byteSource - A valid instance of ByteSource
        Returns:
        true if the content is format-compliant; otherwise, false
        Throws:
        ImageReadException - may be thrown by sub-classes
        java.io.IOException - may be thrown by sub-classes
      • collectRawImageData

        public java.util.List<byte[]> collectRawImageData​(ByteSource byteSource,
                                                          java.util.Map<java.lang.String,​java.lang.Object> params)
                                                   throws ImageReadException,
                                                          java.io.IOException
        Throws:
        ImageReadException
        java.io.IOException
      • getBufferedImage

        public java.awt.image.BufferedImage getBufferedImage​(ByteSource byteSource,
                                                             java.util.Map<java.lang.String,​java.lang.Object> params)
                                                      throws ImageReadException,
                                                             java.io.IOException

        Gets a buffered image specified by the byte source. The TiffImageParser class features support for a number of options that are unique to the TIFF format. These options can be specified by supplying the appropriate parameters using the keys from the TiffConstants class and the params argument for this method.

        Loading Partial Images

        The TIFF parser includes support for loading partial images without committing significantly more memory resources than are necessary to store the image. This feature is useful for conserving memory in applications that require a relatively small sub image from a very large TIFF file. The specifications for partial images are as follows:

           HashMap<String, Object> params = new HashMap<String, Object>();
           params.put(TiffConstants.PARAM_KEY_SUBIMAGE_X, new Integer(x));
           params.put(TiffConstants.PARAM_KEY_SUBIMAGE_Y, new Integer(y));
           params.put(TiffConstants.PARAM_KEY_SUBIMAGE_WIDTH, new Integer(width));
           params.put(TiffConstants.PARAM_KEY_SUBIMAGE_HEIGHT, new Integer(height));
         

        Note that the arguments x, y, width, and height must specify a valid rectangular region that is fully contained within the source TIFF image.

        Specified by:
        getBufferedImage in class ImageParser
        Parameters:
        byteSource - A valid instance of ByteSource
        params - Optional instructions for special-handling or interpretation of the input data (null objects are permitted and must be supported by implementations).
        Returns:
        A valid instance of BufferedImage.
        Throws:
        ImageReadException - In the event that the specified content does not conform to the format of the specific parser implementation.
        java.io.IOException - In the event of unsuccessful read or access operation.
      • getAllBufferedImages

        public java.util.List<java.awt.image.BufferedImage> getAllBufferedImages​(ByteSource byteSource)
                                                                          throws ImageReadException,
                                                                                 java.io.IOException
        Description copied from class: ImageParser
        Gets all images specified by the byte source (some formats may include multiple images within a single data source).
        Overrides:
        getAllBufferedImages in class ImageParser
        Parameters:
        byteSource - A valid instance of ByteSource.
        Returns:
        A valid (potentially empty) list of BufferedImage objects.
        Throws:
        ImageReadException - In the event that the specified content does not conform to the format of the specific parser implementation.
        java.io.IOException - In the event of unsuccessful read or access operation.
      • getIntegerParameter

        private java.lang.Integer getIntegerParameter​(java.lang.String key,
                                                      java.util.Map<java.lang.String,​java.lang.Object> params)
                                               throws ImageReadException
        Throws:
        ImageReadException
      • checkForSubImage

        private java.awt.Rectangle checkForSubImage​(java.util.Map<java.lang.String,​java.lang.Object> params)
                                             throws ImageReadException
        Throws:
        ImageReadException
      • getBufferedImage

        protected java.awt.image.BufferedImage getBufferedImage​(TiffDirectory directory,
                                                                java.nio.ByteOrder byteOrder,
                                                                java.util.Map<java.lang.String,​java.lang.Object> params)
                                                         throws ImageReadException,
                                                                java.io.IOException
        Throws:
        ImageReadException
        java.io.IOException
      • writeImage

        public void writeImage​(java.awt.image.BufferedImage src,
                               java.io.OutputStream os,
                               java.util.Map<java.lang.String,​java.lang.Object> params)
                        throws ImageWriteException,
                               java.io.IOException
        Description copied from class: ImageParser
        Writes the content of a BufferedImage to the specified output stream.

        The params argument provides a mechanism for individual implementations to pass optional information into the parser. Not all formats will support this capability. Currently, some of the parsers do not check for null arguments. So in cases where no optional specifications are supported, application code should pass in an empty instance of an implementation of the map interface (i.e. an empty HashMap).

        Overrides:
        writeImage in class ImageParser
        Parameters:
        src - An image giving the source content for output
        os - A valid output stream for storing the formatted image
        params - A non-null Map implementation supplying optional, format-specific instructions for output (such as selections for data compression, color models, etc.)
        Throws:
        ImageWriteException - In the event that the output format cannot handle the input image or invalid params are specified.
        java.io.IOException - In the event of an write error from the output stream.
      • getFloatingPointRasterData

        TiffRasterData getFloatingPointRasterData​(TiffDirectory directory,
                                                  java.nio.ByteOrder byteOrder,
                                                  java.util.Map<java.lang.String,​java.lang.Object> params)
                                           throws ImageReadException,
                                                  java.io.IOException
        Reads the content of a TIFF file that contains floating-point data samples.

        If desired, sub-image data can be read from the file by using a Java Map instance to specify the subsection of the image that is required. The following code illustrates the approach:

           int x; // coordinate (column) of corner of sub-image
           int y; // coordinate (row) of corner of sub-image
           int width; // width of sub-image
           int height; // height of sub-image
        
           Map<String, Object>params = new HashMap<>();
           params.put(TiffConstants.PARAM_KEY_SUBIMAGE_X, x);
           params.put(TiffConstants.PARAM_KEY_SUBIMAGE_Y, y);
           params.put(TiffConstants.PARAM_KEY_SUBIMAGE_WIDTH, width);
           params.put(TiffConstants.PARAM_KEY_SUBIMAGE_HEIGHT, height);
           TiffRasterData raster =
                readFloatingPointRasterData(directory, byteOrder, params);
         
        Parameters:
        directory - the TIFF directory pointing to the data to be extracted (TIFF files may contain multiple directories)
        byteOrder - the byte order of the data to be extracted
        params - an optional parameter map instance
        Returns:
        a valid instance
        Throws:
        ImageReadException - in the event of incompatible or malformed data
        java.io.IOException - in the event of an I/O error