public class TiffImageParser extends ImageParser implements XmpEmbeddable
Constructor and Description |
---|
TiffImageParser() |
Modifier and Type | Method and Description |
---|---|
List<byte[]> |
collectRawImageData(ByteSource byteSource,
Map<String,Object> params) |
boolean |
dumpImageFile(PrintWriter pw,
ByteSource byteSource)
Write the ImageInfo and format-specific information for the image
content of the specified byte source to a PrintWriter
|
protected String[] |
getAcceptedExtensions()
Get an array of all accepted extensions
|
protected ImageFormat[] |
getAcceptedTypes()
Get an array of ImageFormat objects describing all accepted types
|
List<BufferedImage> |
getAllBufferedImages(ByteSource byteSource)
Gets all images specified by the byte source (some
formats may include multiple images within a single data source).
|
BufferedImage |
getBufferedImage(ByteSource byteSource,
Map<String,Object> params)
Gets a buffered image specified by the byte source.
|
protected BufferedImage |
getBufferedImage(TiffDirectory directory,
ByteOrder byteOrder,
Map<String,Object> params) |
String |
getDefaultExtension()
Get the default extension for the format specified by an implementation
of ImageParser.
|
FormatCompliance |
getFormatCompliance(ByteSource byteSource)
Determines the format compliance of the content of the supplied byte
source based on rules provided by a specific implementation.
|
byte[] |
getICCProfileBytes(ByteSource byteSource,
Map<String,Object> params)
Get an array of bytes describing the International Color Consortium (ICC)
specification for the color space of the image contained in the
input byteSource.
|
ImageInfo |
getImageInfo(ByteSource byteSource,
Map<String,Object> params)
Get image information from the specified ByteSource.
|
Dimension |
getImageSize(ByteSource byteSource,
Map<String,Object> params)
Get the size of the image described by the specified ByteSource.
|
ImageMetadata |
getMetadata(ByteSource byteSource,
Map<String,Object> params)
Get image metadata from the specified byte source.
|
String |
getName()
Get a descriptive name for the implementation of an ImageParser.
|
String |
getXmpXml(ByteSource byteSource,
Map<String,Object> params)
Get a string containing XML-formatted text conforming to the Extensible
Metadata Platform (EXP) standard for representing information about
image content.
|
void |
writeImage(BufferedImage src,
OutputStream os,
Map<String,Object> params)
Writes the content of a BufferedImage to the specified output
stream.
|
canAcceptExtension, canAcceptExtension, canAcceptType, dumpImageFile, dumpImageFile, dumpImageFile, getAllBufferedImages, getAllBufferedImages, getAllImageParsers, getBufferedImage, getBufferedImage, getBufferedImageFactory, getFormatCompliance, getFormatCompliance, getICCProfileBytes, getICCProfileBytes, getICCProfileBytes, getICCProfileBytes, getImageInfo, getImageInfo, getImageInfo, getImageSize, getImageSize, getImageSize, getImageSize, getMetadata, getMetadata, getMetadata, getMetadata, getMetadata, isStrict
debugNumber, debugNumber, getByteOrder, setByteOrder
public String getName()
ImageParser
getName
in class ImageParser
public String getDefaultExtension()
ImageParser
getDefaultExtension
in class ImageParser
protected String[] getAcceptedExtensions()
ImageParser
getAcceptedExtensions
in class ImageParser
protected ImageFormat[] getAcceptedTypes()
ImageParser
getAcceptedTypes
in class ImageParser
public byte[] getICCProfileBytes(ByteSource byteSource, Map<String,Object> params) throws ImageReadException, IOException
ImageParser
getICCProfileBytes
in class ImageParser
byteSource
- A valid ByteSource.params
- Optional instructions for special-handling or
interpretation of the input data.ImageReadException
- In the event that the specified content
does not conform to the format of the specific
parser implementation.IOException
- In the event of unsuccessful read or access operation.public Dimension getImageSize(ByteSource byteSource, Map<String,Object> params) throws ImageReadException, IOException
ImageParser
getImageSize
in class ImageParser
byteSource
- A valid reference to a ByteSource.params
- Optional instructions for special-handling or
interpretation of the input data.ImageReadException
- In the event that the specified content
does not conform to the format of the specific
parser implementation.IOException
- In the event of unsuccessful read or access operation.public ImageMetadata getMetadata(ByteSource byteSource, Map<String,Object> params) throws ImageReadException, IOException
ImageParser
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.
getMetadata
in class ImageParser
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).ImageReadException
- In the event that the ByteSource
content does not conform to the format of the specific parser
implementation.IOException
- In the event of unsuccessful data read operation.public ImageInfo getImageInfo(ByteSource byteSource, Map<String,Object> params) throws ImageReadException, IOException
ImageParser
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.
getImageInfo
in class ImageParser
byteSource
- A valid ByteSource objectparams
- Optional instructions for special-handling or interpretation
of the input data (null objects are permitted and
must be supported by implementations).ImageReadException
- In the event that the specified content
does not conform to the format of the specific
parser implementation.IOException
- In the event of unsuccessful data access operation.public String getXmpXml(ByteSource byteSource, Map<String,Object> params) throws ImageReadException, IOException
XmpEmbeddable
getXmpXml
in interface XmpEmbeddable
byteSource
- A valid reference to a ByteSource.params
- Optional instructions for special-handling or
interpretation of the input data.ImageReadException
- In the event that the specified content
does not conform to the format of the specific
parser implementation.IOException
- In the event of unsuccessful read or access operation.public boolean dumpImageFile(PrintWriter pw, ByteSource byteSource) throws ImageReadException, IOException
ImageParser
dumpImageFile
in class ImageParser
pw
- print writer used for writing the ImageInfobyteSource
- A valid byte source.ImageReadException
- In the event that the specified content
does not conform to the format of the specific
parser implementation.IOException
- In the event of unsuccessful read or access operation.public FormatCompliance getFormatCompliance(ByteSource byteSource) throws ImageReadException, IOException
ImageParser
getFormatCompliance
in class ImageParser
byteSource
- A valid instance of ByteSourceImageReadException
- may be thrown by sub-classesIOException
- may be thrown by sub-classespublic List<byte[]> collectRawImageData(ByteSource byteSource, Map<String,Object> params) throws ImageReadException, IOException
ImageReadException
IOException
public BufferedImage getBufferedImage(ByteSource byteSource, Map<String,Object> params) throws ImageReadException, 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.
getBufferedImage
in class ImageParser
byteSource
- A valid instance of ByteSourceparams
- Optional instructions for special-handling or
interpretation of the input data (null objects are permitted and
must be supported by implementations).ImageReadException
- In the event that the specified
content does not conform to the format of the specific parser
implementation.IOException
- In the event of unsuccessful read or
access operation.public List<BufferedImage> getAllBufferedImages(ByteSource byteSource) throws ImageReadException, IOException
ImageParser
getAllBufferedImages
in class ImageParser
byteSource
- A valid instance of ByteSource.ImageReadException
- In the event that the specified content
does not conform to the format of the specific
parser implementation.IOException
- In the event of unsuccessful read or access operation.protected BufferedImage getBufferedImage(TiffDirectory directory, ByteOrder byteOrder, Map<String,Object> params) throws ImageReadException, IOException
ImageReadException
IOException
public void writeImage(BufferedImage src, OutputStream os, Map<String,Object> params) throws ImageWriteException, IOException
ImageParser
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).
writeImage
in class ImageParser
src
- An image giving the source content for outputos
- A valid output stream for storing the formatted imageparams
- A non-null Map implementation supplying optional,
format-specific instructions for output
(such as selections for data compression, color models, etc.)ImageWriteException
- In the event that the output format
cannot handle the input image or invalid params are specified.IOException
- In the event of an write error from
the output stream.Copyright © 2007–2020 The Apache Software Foundation. All rights reserved.