Class GifImageParser
- All Implemented Interfaces:
XmpEmbeddable
-
Field Summary
FieldsModifier and TypeFieldDescriptionprivate static final String[]
private static final int
private static final int
private static final String
private static final int
private static final byte[]
private static final int
private static final int
private static final int
private static final int
private static final Logger
private static final int
private static final int
private static final int
private static final byte[]
private static final int
private static final int
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionprivate int
convertColorTableSize
(int tableSize) (package private) static DisposalMethod
createDisposalMethodFromIntValue
(int value) boolean
dumpImageFile
(PrintWriter pw, ByteSource byteSource) Write the ImageInfo and format-specific information for the image content of the specified byte source to a PrintWriterfindAllBlocks
(List<GifBlock> blocks, int code) SeereadBlocks(org.apache.commons.imaging.formats.gif.GifHeaderInfo, java.io.InputStream, boolean, org.apache.commons.imaging.FormatCompliance)
for reference how the blocks are created.private List
<GifImageData> findAllImageData
(GifImageContents imageContents) private GifBlock
private GifImageData
findFirstImageData
(GifImageContents imageContents) protected String[]
Get an array of all accepted extensionsprotected ImageFormat[]
Get an array of ImageFormat objects describing all accepted typesgetAllBufferedImages
(ByteSource byteSource) Gets all images specified by the byte source (some formats may include multiple images within a single data source).getBufferedImage
(ByteSource byteSource, Map<String, Object> params) Gets a buffered image specified by the byte source (for sources that specify multiple images, choice of which image is returned is implementation dependent).private BufferedImage
getBufferedImage
(GifHeaderInfo headerInfo, GifImageData imageData, byte[] globalColorTable) private int[]
getColorTable
(byte[] bytes) getComments
(List<GifBlock> blocks) Get the default extension for the format specified by an implementation of ImageParser.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.getImageInfo
(ByteSource byteSource, Map<String, Object> params) Get image information from the specified ByteSource.getImageSize
(ByteSource byteSource, Map<String, Object> params) Get the size of the image described by the specified ByteSource.getMetadata
(ByteSource byteSource, Map<String, Object> params) Get image metadata from the specified byte source.getName()
Get a descriptive name for the implementation of an ImageParser.getXmpXml
(ByteSource byteSource, Map<String, Object> params) Extracts embedded XML metadata as XML string.readBlocks
(GifHeaderInfo ghi, InputStream is, boolean stopBeforeImageData, FormatCompliance formatCompliance) private byte[]
readColorTable
(InputStream is, int tableSize) private GifImageContents
readFile
(ByteSource byteSource, boolean stopBeforeImageData) private GifImageContents
readFile
(ByteSource byteSource, boolean stopBeforeImageData, FormatCompliance formatCompliance) private GenericGifBlock
readGenericGIFBlock
(InputStream is, int code) private GenericGifBlock
readGenericGIFBlock
(InputStream is, int code, byte[] first) private GraphicControlExtension
readGraphicControlExtension
(int code, InputStream is) private GifHeaderInfo
readHeader
(InputStream is, FormatCompliance formatCompliance) private ImageDescriptor
readImageDescriptor
(GifHeaderInfo ghi, int blockCode, InputStream is, boolean stopBeforeImageData, FormatCompliance formatCompliance) private byte[]
private int
simplePow
(int base, int power) private void
writeAsSubBlocks
(OutputStream os, byte[] bytes) void
writeImage
(BufferedImage src, OutputStream os, Map<String, Object> params) Writes the content of a BufferedImage to the specified output stream.Methods inherited from class org.apache.commons.imaging.ImageParser
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
Methods inherited from class org.apache.commons.imaging.common.BinaryFileParser
debugNumber, debugNumber, getByteOrder, setByteOrder
-
Field Details
-
LOGGER
-
DEFAULT_EXTENSION
- See Also:
-
ACCEPTED_EXTENSIONS
-
GIF_HEADER_SIGNATURE
private static final byte[] GIF_HEADER_SIGNATURE -
EXTENSION_CODE
private static final int EXTENSION_CODE- See Also:
-
IMAGE_SEPARATOR
private static final int IMAGE_SEPARATOR- See Also:
-
GRAPHIC_CONTROL_EXTENSION
private static final int GRAPHIC_CONTROL_EXTENSION- See Also:
-
COMMENT_EXTENSION
private static final int COMMENT_EXTENSION- See Also:
-
PLAIN_TEXT_EXTENSION
private static final int PLAIN_TEXT_EXTENSION- See Also:
-
XMP_EXTENSION
private static final int XMP_EXTENSION- See Also:
-
TERMINATOR_BYTE
private static final int TERMINATOR_BYTE- See Also:
-
APPLICATION_EXTENSION_LABEL
private static final int APPLICATION_EXTENSION_LABEL- See Also:
-
XMP_COMPLETE_CODE
private static final int XMP_COMPLETE_CODE- See Also:
-
LOCAL_COLOR_TABLE_FLAG_MASK
private static final int LOCAL_COLOR_TABLE_FLAG_MASK- See Also:
-
INTERLACE_FLAG_MASK
private static final int INTERLACE_FLAG_MASK- See Also:
-
SORT_FLAG_MASK
private static final int SORT_FLAG_MASK- See Also:
-
XMP_APPLICATION_ID_AND_AUTH_CODE
private static final byte[] XMP_APPLICATION_ID_AND_AUTH_CODE
-
-
Constructor Details
-
GifImageParser
public GifImageParser()
-
-
Method Details
-
getName
Description copied from class:ImageParser
Get a descriptive name for the implementation of an ImageParser.- Specified by:
getName
in classImageParser
- Returns:
- a valid, subject-matter-specific 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 classImageParser
- Returns:
- A valid string.
-
getAcceptedExtensions
Description copied from class:ImageParser
Get an array of all accepted extensions- Specified by:
getAcceptedExtensions
in classImageParser
- Returns:
- A valid array of one or more elements.
-
getAcceptedTypes
Description copied from class:ImageParser
Get an array of ImageFormat objects describing all accepted types- Specified by:
getAcceptedTypes
in classImageParser
- Returns:
- A valid array of one or more elements.
-
readHeader
private GifHeaderInfo readHeader(InputStream is, FormatCompliance formatCompliance) throws ImageReadException, IOException - Throws:
ImageReadException
IOException
-
readGraphicControlExtension
private GraphicControlExtension readGraphicControlExtension(int code, InputStream is) throws IOException - Throws:
IOException
-
readSubBlock
- Throws:
IOException
-
readGenericGIFBlock
- Throws:
IOException
-
readGenericGIFBlock
private GenericGifBlock readGenericGIFBlock(InputStream is, int code, byte[] first) throws IOException - Throws:
IOException
-
readBlocks
private List<GifBlock> readBlocks(GifHeaderInfo ghi, InputStream is, boolean stopBeforeImageData, FormatCompliance formatCompliance) throws ImageReadException, IOException - Throws:
ImageReadException
IOException
-
readImageDescriptor
private ImageDescriptor readImageDescriptor(GifHeaderInfo ghi, int blockCode, InputStream is, boolean stopBeforeImageData, FormatCompliance formatCompliance) throws ImageReadException, IOException - Throws:
ImageReadException
IOException
-
simplePow
private int simplePow(int base, int power) -
convertColorTableSize
private int convertColorTableSize(int tableSize) -
readColorTable
- Throws:
IOException
-
findBlock
-
findAllBlocks
SeereadBlocks(org.apache.commons.imaging.formats.gif.GifHeaderInfo, java.io.InputStream, boolean, org.apache.commons.imaging.FormatCompliance)
for reference how the blocks are created. They should match the code we are giving here, returning the correct class type. Internal only. -
readFile
private GifImageContents readFile(ByteSource byteSource, boolean stopBeforeImageData) throws ImageReadException, IOException - Throws:
ImageReadException
IOException
-
readFile
private GifImageContents readFile(ByteSource byteSource, boolean stopBeforeImageData, FormatCompliance formatCompliance) throws ImageReadException, IOException - Throws:
ImageReadException
IOException
-
getICCProfileBytes
public byte[] getICCProfileBytes(ByteSource byteSource, Map<String, Object> params) throws ImageReadException, IOExceptionDescription 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 classImageParser
- 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.IOException
- In the event of unsuccessful read or access operation.
-
getImageSize
public Dimension getImageSize(ByteSource byteSource, Map<String, Object> params) throws ImageReadException, IOExceptionDescription copied from class:ImageParser
Get the size of the image described by the specified ByteSource.- Specified by:
getImageSize
in classImageParser
- 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.IOException
- In the event of unsuccessful read or access operation.
-
createDisposalMethodFromIntValue
- Throws:
ImageReadException
-
getMetadata
public ImageMetadata getMetadata(ByteSource byteSource, Map<String, Object> params) throws ImageReadException, IOExceptionDescription 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 classImageParser
- 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.IOException
- In the event of unsuccessful data read operation.
-
getComments
- Throws:
IOException
-
getImageInfo
public ImageInfo getImageInfo(ByteSource byteSource, Map<String, Object> params) throws ImageReadException, IOExceptionDescription 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 classImageParser
- Parameters:
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).- 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.IOException
- In the event of unsuccessful data access operation.
-
dumpImageFile
public boolean dumpImageFile(PrintWriter pw, ByteSource byteSource) throws ImageReadException, 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 classImageParser
- Parameters:
pw
- print writer used for writing the ImageInfobyteSource
- 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.IOException
- In the event of unsuccessful read or access operation.
-
getColorTable
- Throws:
ImageReadException
-
getFormatCompliance
public FormatCompliance getFormatCompliance(ByteSource byteSource) throws ImageReadException, 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 classImageParser
- Parameters:
byteSource
- A valid instance of ByteSource- Returns:
- true if the content is format-compliant; otherwise, false
- Throws:
ImageReadException
- may be thrown by sub-classesIOException
- may be thrown by sub-classes
-
findAllImageData
private List<GifImageData> findAllImageData(GifImageContents imageContents) throws ImageReadException - Throws:
ImageReadException
-
findFirstImageData
- Throws:
ImageReadException
-
getBufferedImage
private BufferedImage getBufferedImage(GifHeaderInfo headerInfo, GifImageData imageData, byte[] globalColorTable) throws ImageReadException - Throws:
ImageReadException
-
getAllBufferedImages
public List<BufferedImage> getAllBufferedImages(ByteSource byteSource) throws ImageReadException, 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 classImageParser
- 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.IOException
- In the event of unsuccessful read or access operation.
-
getBufferedImage
public BufferedImage getBufferedImage(ByteSource byteSource, Map<String, Object> params) throws ImageReadException, IOExceptionDescription copied from class:ImageParser
Gets a buffered image specified by the byte source (for sources that specify multiple images, choice of which image is returned is implementation dependent).- Specified by:
getBufferedImage
in classImageParser
- Parameters:
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).- 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.IOException
- In the event of unsuccessful read or access operation.
-
writeAsSubBlocks
- Throws:
IOException
-
writeImage
public void writeImage(BufferedImage src, OutputStream os, Map<String, Object> params) throws ImageWriteException, IOExceptionDescription 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 classImageParser
- Parameters:
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.)- Throws:
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.
-
getXmpXml
public String getXmpXml(ByteSource byteSource, Map<String, Object> params) throws ImageReadException, IOExceptionExtracts embedded XML metadata as XML string.- Specified by:
getXmpXml
in interfaceXmpEmbeddable
- Parameters:
byteSource
- File containing image data.params
- Map of optional parameters, defined in ImagingConstants.- Returns:
- Xmp Xml as String, if present. Otherwise, returns null.
- Throws:
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.
-