Class GifImageParser
- java.lang.Object
-
- org.apache.commons.imaging.common.BinaryFileParser
-
- org.apache.commons.imaging.AbstractImageParser<GifImagingParameters>
-
- org.apache.commons.imaging.formats.gif.GifImageParser
-
- All Implemented Interfaces:
XmpEmbeddable<GifImagingParameters>
public class GifImageParser extends AbstractImageParser<GifImagingParameters> implements XmpEmbeddable<GifImagingParameters>
-
-
Field Summary
Fields Modifier and Type Field Description private static java.lang.String[]ACCEPTED_EXTENSIONSprivate static intAPPLICATION_EXTENSION_LABELprivate static intCOMMENT_EXTENSIONprivate static java.lang.StringDEFAULT_EXTENSIONprivate static intEXTENSION_CODEprivate static byte[]GIF_HEADER_SIGNATUREprivate static intGRAPHIC_CONTROL_EXTENSIONprivate static intIMAGE_SEPARATORprivate static intINTERLACE_FLAG_MASKprivate static intLOCAL_COLOR_TABLE_FLAG_MASKprivate static java.util.logging.LoggerLOGGERprivate static intPLAIN_TEXT_EXTENSIONprivate static intSORT_FLAG_MASKprivate static intTERMINATOR_BYTEprivate static byte[]XMP_APPLICATION_ID_AND_AUTH_CODEprivate static intXMP_COMPLETE_CODEprivate static intXMP_EXTENSION
-
Constructor Summary
Constructors Constructor Description GifImageParser()Constructs a new instance with the little-endian byte order.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description private intconvertColorTableSize(int tableSize)(package private) static DisposalMethodcreateDisposalMethodFromIntValue(int value)booleandumpImageFile(java.io.PrintWriter pw, ByteSource byteSource)Writes the ImageInfo and format-specific information for the image content of the specified byte source to a PrintWriterprivate <T extends GifBlock>
java.util.List<T>findAllBlocks(java.util.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 java.util.List<GifImageData>findAllImageData(GifImageContents imageContents)private GifBlockfindBlock(java.util.List<GifBlock> blocks, int code)private GifImageDatafindFirstImageData(GifImageContents imageContents)protected java.lang.String[]getAcceptedExtensions()Gets an array of all accepted extensionsprotected ImageFormat[]getAcceptedTypes()Gets an array of ImageFormat objects describing all accepted typesjava.util.List<java.awt.image.BufferedImage>getAllBufferedImages(ByteSource byteSource)Gets all images specified by the byte source (some formats may include multiple images within a single data source).java.awt.image.BufferedImagegetBufferedImage(ByteSource byteSource, GifImagingParameters 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 java.awt.image.BufferedImagegetBufferedImage(GifImageData imageData, byte[] globalColorTable)private int[]getColorTable(byte[] bytes)private java.util.List<java.lang.String>getComments(java.util.List<GifBlock> blocks)java.lang.StringgetDefaultExtension()Gets the default extension for the format specified by an implementation of ImageParser.GifImagingParametersgetDefaultParameters()Gets a default parameters instance for this parser.FormatCompliancegetFormatCompliance(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, GifImagingParameters params)Gets an array of bytes describing the International Color Consortium (ICC) specification for the color space of the image contained in the input byteSource.ImageInfogetImageInfo(ByteSource byteSource, GifImagingParameters params)Gets image information from the specified ByteSource.java.awt.DimensiongetImageSize(ByteSource byteSource, GifImagingParameters params)Gets the size of the image described by the specified ByteSource.ImageMetadatagetMetadata(ByteSource byteSource, GifImagingParameters params)Gets image metadata from the specified byte source.java.lang.StringgetName()Gets a descriptive name for the implementation of an ImageParser.java.lang.StringgetXmpXml(ByteSource byteSource, XmpImagingParameters<GifImagingParameters> params)Extracts embedded XML metadata as XML string.private java.util.List<GifBlock>readBlocks(GifHeaderInfo ghi, java.io.InputStream is, boolean stopBeforeImageData, FormatCompliance formatCompliance)private byte[]readColorTable(java.io.InputStream is, int tableSize)private GifImageContentsreadFile(ByteSource byteSource, boolean stopBeforeImageData)private GifImageContentsreadFile(ByteSource byteSource, boolean stopBeforeImageData, FormatCompliance formatCompliance)private GenericGifBlockreadGenericGifBlock(java.io.InputStream is, int code)private GenericGifBlockreadGenericGifBlock(java.io.InputStream is, int code, byte[] first)private GraphicControlExtensionreadGraphicControlExtension(int code, java.io.InputStream is)private GifHeaderInforeadHeader(java.io.InputStream is, FormatCompliance formatCompliance)private ImageDescriptorreadImageDescriptor(GifHeaderInfo ghi, int blockCode, java.io.InputStream is, boolean stopBeforeImageData, FormatCompliance formatCompliance)private byte[]readSubBlock(java.io.InputStream is)private intsimplePow(int base, int power)private voidwriteAsSubBlocks(byte[] bytes, java.io.OutputStream os)voidwriteImage(java.awt.image.BufferedImage src, java.io.OutputStream os, GifImagingParameters params)Writes the content of a BufferedImage to the specified output stream.-
Methods inherited from class org.apache.commons.imaging.AbstractImageParser
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
-
Methods inherited from class org.apache.commons.imaging.common.BinaryFileParser
debugNumber, debugNumber, getByteOrder, setByteOrder
-
-
-
-
Field Detail
-
LOGGER
private static final java.util.logging.Logger LOGGER
-
DEFAULT_EXTENSION
private static final java.lang.String DEFAULT_EXTENSION
-
ACCEPTED_EXTENSIONS
private static final java.lang.String[] ACCEPTED_EXTENSIONS
-
GIF_HEADER_SIGNATURE
private static final byte[] GIF_HEADER_SIGNATURE
-
EXTENSION_CODE
private static final int EXTENSION_CODE
- See Also:
- Constant Field Values
-
IMAGE_SEPARATOR
private static final int IMAGE_SEPARATOR
- See Also:
- Constant Field Values
-
GRAPHIC_CONTROL_EXTENSION
private static final int GRAPHIC_CONTROL_EXTENSION
- See Also:
- Constant Field Values
-
COMMENT_EXTENSION
private static final int COMMENT_EXTENSION
- See Also:
- Constant Field Values
-
PLAIN_TEXT_EXTENSION
private static final int PLAIN_TEXT_EXTENSION
- See Also:
- Constant Field Values
-
XMP_EXTENSION
private static final int XMP_EXTENSION
- See Also:
- Constant Field Values
-
TERMINATOR_BYTE
private static final int TERMINATOR_BYTE
- See Also:
- Constant Field Values
-
APPLICATION_EXTENSION_LABEL
private static final int APPLICATION_EXTENSION_LABEL
- See Also:
- Constant Field Values
-
XMP_COMPLETE_CODE
private static final int XMP_COMPLETE_CODE
- See Also:
- Constant Field Values
-
LOCAL_COLOR_TABLE_FLAG_MASK
private static final int LOCAL_COLOR_TABLE_FLAG_MASK
- See Also:
- Constant Field Values
-
INTERLACE_FLAG_MASK
private static final int INTERLACE_FLAG_MASK
- See Also:
- Constant Field Values
-
SORT_FLAG_MASK
private static final int SORT_FLAG_MASK
- See Also:
- Constant Field Values
-
XMP_APPLICATION_ID_AND_AUTH_CODE
private static final byte[] XMP_APPLICATION_ID_AND_AUTH_CODE
-
-
Method Detail
-
createDisposalMethodFromIntValue
static DisposalMethod createDisposalMethodFromIntValue(int value) throws ImagingException
- Throws:
ImagingException
-
convertColorTableSize
private int convertColorTableSize(int tableSize)
-
dumpImageFile
public boolean dumpImageFile(java.io.PrintWriter pw, ByteSource byteSource) throws ImagingException, java.io.IOExceptionDescription copied from class:AbstractImageParserWrites the ImageInfo and format-specific information for the image content of the specified byte source to a PrintWriter- Overrides:
dumpImageFilein classAbstractImageParser<GifImagingParameters>- Parameters:
pw- print writer used for writing the ImageInfobyteSource- A valid byte source.- Returns:
- A valid PrintWriter.
- Throws:
ImagingException- 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.
-
findAllBlocks
private <T extends GifBlock> java.util.List<T> findAllBlocks(java.util.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. They should match the code we are giving here, returning the correct class type. Internal only.
-
findAllImageData
private java.util.List<GifImageData> findAllImageData(GifImageContents imageContents) throws ImagingException
- Throws:
ImagingException
-
findFirstImageData
private GifImageData findFirstImageData(GifImageContents imageContents) throws ImagingException
- Throws:
ImagingException
-
getAcceptedExtensions
protected java.lang.String[] getAcceptedExtensions()
Description copied from class:AbstractImageParserGets an array of all accepted extensions- Specified by:
getAcceptedExtensionsin classAbstractImageParser<GifImagingParameters>- Returns:
- A valid array of one or more elements.
-
getAcceptedTypes
protected ImageFormat[] getAcceptedTypes()
Description copied from class:AbstractImageParserGets an array of ImageFormat objects describing all accepted types- Specified by:
getAcceptedTypesin classAbstractImageParser<GifImagingParameters>- Returns:
- A valid array of one or more elements.
-
getAllBufferedImages
public java.util.List<java.awt.image.BufferedImage> getAllBufferedImages(ByteSource byteSource) throws ImagingException, java.io.IOException
Description copied from class:AbstractImageParserGets all images specified by the byte source (some formats may include multiple images within a single data source).- Overrides:
getAllBufferedImagesin classAbstractImageParser<GifImagingParameters>- Parameters:
byteSource- A valid instance of ByteSource.- Returns:
- A valid (potentially empty) list of BufferedImage objects.
- Throws:
ImagingException- 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.
-
getBufferedImage
public java.awt.image.BufferedImage getBufferedImage(ByteSource byteSource, GifImagingParameters params) throws ImagingException, java.io.IOException
Description copied from class:AbstractImageParserGets 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:
getBufferedImagein classAbstractImageParser<GifImagingParameters>- 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:
ImagingException- 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.
-
getBufferedImage
private java.awt.image.BufferedImage getBufferedImage(GifImageData imageData, byte[] globalColorTable) throws ImagingException
- Throws:
ImagingException
-
getColorTable
private int[] getColorTable(byte[] bytes) throws ImagingException- Throws:
ImagingException
-
getComments
private java.util.List<java.lang.String> getComments(java.util.List<GifBlock> blocks) throws java.io.IOException
- Throws:
java.io.IOException
-
getDefaultExtension
public java.lang.String getDefaultExtension()
Description copied from class:AbstractImageParserGets 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:
getDefaultExtensionin classAbstractImageParser<GifImagingParameters>- Returns:
- A valid string.
-
getDefaultParameters
public GifImagingParameters getDefaultParameters()
Description copied from class:AbstractImageParserGets a default parameters instance for this parser.- Specified by:
getDefaultParametersin classAbstractImageParser<GifImagingParameters>- Returns:
- default parameters instance
-
getFormatCompliance
public FormatCompliance getFormatCompliance(ByteSource byteSource) throws ImagingException, java.io.IOException
Description copied from class:AbstractImageParserDetermines the format compliance of the content of the supplied byte source based on rules provided by a specific implementation.- Overrides:
getFormatCompliancein classAbstractImageParser<GifImagingParameters>- Parameters:
byteSource- A valid instance of ByteSource- Returns:
- true if the content is format-compliant; otherwise, false
- Throws:
ImagingException- may be thrown by sub-classesjava.io.IOException- may be thrown by sub-classes
-
getIccProfileBytes
public byte[] getIccProfileBytes(ByteSource byteSource, GifImagingParameters params) throws ImagingException, java.io.IOException
Description copied from class:AbstractImageParserGets 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:
getIccProfileBytesin classAbstractImageParser<GifImagingParameters>- 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:
ImagingException- 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.
-
getImageInfo
public ImageInfo getImageInfo(ByteSource byteSource, GifImagingParameters params) throws ImagingException, java.io.IOException
Description copied from class:AbstractImageParserGets 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:
getImageInfoin classAbstractImageParser<GifImagingParameters>- 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:
ImagingException- 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.
-
getImageSize
public java.awt.Dimension getImageSize(ByteSource byteSource, GifImagingParameters params) throws ImagingException, java.io.IOException
Description copied from class:AbstractImageParserGets the size of the image described by the specified ByteSource.- Specified by:
getImageSizein classAbstractImageParser<GifImagingParameters>- 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:
ImagingException- 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, GifImagingParameters params) throws ImagingException, java.io.IOException
Description copied from class:AbstractImageParserGets 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:
getMetadatain classAbstractImageParser<GifImagingParameters>- 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:
ImagingException- 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.
-
getName
public java.lang.String getName()
Description copied from class:AbstractImageParserGets a descriptive name for the implementation of an ImageParser.- Specified by:
getNamein classAbstractImageParser<GifImagingParameters>- Returns:
- a valid, subject-matter-specific string.
-
getXmpXml
public java.lang.String getXmpXml(ByteSource byteSource, XmpImagingParameters<GifImagingParameters> params) throws ImagingException, java.io.IOException
Extracts embedded XML metadata as XML string.- Specified by:
getXmpXmlin interfaceXmpEmbeddable<GifImagingParameters>- 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:
ImagingException- 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.
-
readBlocks
private java.util.List<GifBlock> readBlocks(GifHeaderInfo ghi, java.io.InputStream is, boolean stopBeforeImageData, FormatCompliance formatCompliance) throws ImagingException, java.io.IOException
- Throws:
ImagingExceptionjava.io.IOException
-
readColorTable
private byte[] readColorTable(java.io.InputStream is, int tableSize) throws java.io.IOException- Throws:
java.io.IOException
-
readFile
private GifImageContents readFile(ByteSource byteSource, boolean stopBeforeImageData) throws ImagingException, java.io.IOException
- Throws:
ImagingExceptionjava.io.IOException
-
readFile
private GifImageContents readFile(ByteSource byteSource, boolean stopBeforeImageData, FormatCompliance formatCompliance) throws ImagingException, java.io.IOException
- Throws:
ImagingExceptionjava.io.IOException
-
readGenericGifBlock
private GenericGifBlock readGenericGifBlock(java.io.InputStream is, int code) throws java.io.IOException
- Throws:
java.io.IOException
-
readGenericGifBlock
private GenericGifBlock readGenericGifBlock(java.io.InputStream is, int code, byte[] first) throws java.io.IOException
- Throws:
java.io.IOException
-
readGraphicControlExtension
private GraphicControlExtension readGraphicControlExtension(int code, java.io.InputStream is) throws java.io.IOException
- Throws:
java.io.IOException
-
readHeader
private GifHeaderInfo readHeader(java.io.InputStream is, FormatCompliance formatCompliance) throws ImagingException, java.io.IOException
- Throws:
ImagingExceptionjava.io.IOException
-
readImageDescriptor
private ImageDescriptor readImageDescriptor(GifHeaderInfo ghi, int blockCode, java.io.InputStream is, boolean stopBeforeImageData, FormatCompliance formatCompliance) throws ImagingException, java.io.IOException
- Throws:
ImagingExceptionjava.io.IOException
-
readSubBlock
private byte[] readSubBlock(java.io.InputStream is) throws java.io.IOException- Throws:
java.io.IOException
-
simplePow
private int simplePow(int base, int power)
-
writeAsSubBlocks
private void writeAsSubBlocks(byte[] bytes, java.io.OutputStream os) throws java.io.IOException- Throws:
java.io.IOException
-
writeImage
public void writeImage(java.awt.image.BufferedImage src, java.io.OutputStream os, GifImagingParameters params) throws ImagingException, java.io.IOExceptionDescription copied from class:AbstractImageParserWrites 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.
- Overrides:
writeImagein classAbstractImageParser<GifImagingParameters>- Parameters:
src- An image giving the source content for outputos- A valid output stream for storing the formatted imageparams- optional parameters, defining format-specific instructions for output (such as selections for data compression, color models, etc.)- Throws:
ImagingException- 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.
-
-