Class PsdImageParser
- java.lang.Object
-
- org.apache.commons.imaging.common.BinaryFileParser
-
- org.apache.commons.imaging.AbstractImageParser<PsdImagingParameters>
-
- org.apache.commons.imaging.formats.psd.PsdImageParser
-
- All Implemented Interfaces:
XmpEmbeddable
public class PsdImageParser extends AbstractImageParser<PsdImagingParameters> implements XmpEmbeddable
-
-
Field Summary
Fields Modifier and Type Field Description private static java.lang.String[]ACCEPTED_EXTENSIONSstatic java.lang.StringBLOCK_NAME_XMPprivate static intCOLOR_MODE_INDEXEDprivate static java.lang.StringDEFAULT_EXTENSIONstatic intIMAGE_RESOURCE_ID_ICC_PROFILEstatic intIMAGE_RESOURCE_ID_XMPprivate static intPSD_HEADER_LENGTHprivate static intPSD_SECTION_COLOR_MODEprivate static intPSD_SECTION_HEADERprivate static intPSD_SECTION_IMAGE_DATAprivate static intPSD_SECTION_IMAGE_RESOURCESprivate static intPSD_SECTION_LAYER_AND_MASK_DATA
-
Constructor Summary
Constructors Constructor Description PsdImageParser()Constructs a new instance with the big-endian byte order.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description 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 PrintWriterprotected java.lang.String[]getAcceptedExtensions()Gets an array of all accepted extensionsprotected ImageFormat[]getAcceptedTypes()Gets an array of ImageFormat objects describing all accepted typesjava.awt.image.BufferedImagegetBufferedImage(ByteSource byteSource, PsdImagingParameters 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 intgetChannelsPerMode(int mode)private byte[]getData(ByteSource byteSource, int section)java.lang.StringgetDefaultExtension()Gets the default extension for the format specified by an implementation of ImageParser.PsdImagingParametersgetDefaultParameters()Gets a default parameters instance for this parser.byte[]getIccProfileBytes(ByteSource byteSource, PsdImagingParameters 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, PsdImagingParameters params)Gets image information from the specified ByteSource.java.awt.DimensiongetImageSize(ByteSource byteSource, PsdImagingParameters params)Gets the size of the image described by the specified ByteSource.private java.io.InputStreamgetInputStream(ByteSource byteSource, int section)ImageMetadatagetMetadata(ByteSource byteSource, PsdImagingParameters 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 params)Extracts embedded XML metadata as XML string.private booleankeepImageResourceBlock(int id, int[] imageResourceIDs)private PsdHeaderInforeadHeader(java.io.InputStream is)private PsdHeaderInforeadHeader(ByteSource byteSource)private PsdImageContentsreadImageContents(java.io.InputStream is)private PsdImageContentsreadImageContents(ByteSource byteSource)private java.util.List<ImageResourceBlock>readImageResourceBlocks(byte[] bytes, int[] imageResourceIDs, int maxBlocksToRead)private java.util.List<ImageResourceBlock>readImageResourceBlocks(java.io.InputStream is, int[] imageResourceIDs, int maxBlocksToRead, int available)private java.util.List<ImageResourceBlock>readImageResourceBlocks(ByteSource byteSource, int[] imageResourceIDs, int maxBlocksToRead)-
Methods inherited from class org.apache.commons.imaging.AbstractImageParser
canAcceptExtension, canAcceptExtension, canAcceptType, dumpImageFile, dumpImageFile, dumpImageFile, getAllBufferedImages, getAllBufferedImages, getAllBufferedImages, getAllImageParsers, getBufferedImage, getBufferedImage, getBufferedImageFactory, getFormatCompliance, getFormatCompliance, getFormatCompliance, getIccProfileBytes, getIccProfileBytes, getIccProfileBytes, getIccProfileBytes, getImageInfo, getImageInfo, getImageInfo, getImageSize, getImageSize, getImageSize, getImageSize, getMetadata, getMetadata, getMetadata, getMetadata, getMetadata, writeImage
-
Methods inherited from class org.apache.commons.imaging.common.BinaryFileParser
debugNumber, debugNumber, getByteOrder, setByteOrder
-
-
-
-
Field Detail
-
DEFAULT_EXTENSION
private static final java.lang.String DEFAULT_EXTENSION
-
ACCEPTED_EXTENSIONS
private static final java.lang.String[] ACCEPTED_EXTENSIONS
-
PSD_SECTION_HEADER
private static final int PSD_SECTION_HEADER
- See Also:
- Constant Field Values
-
PSD_SECTION_COLOR_MODE
private static final int PSD_SECTION_COLOR_MODE
- See Also:
- Constant Field Values
-
PSD_SECTION_IMAGE_RESOURCES
private static final int PSD_SECTION_IMAGE_RESOURCES
- See Also:
- Constant Field Values
-
PSD_SECTION_LAYER_AND_MASK_DATA
private static final int PSD_SECTION_LAYER_AND_MASK_DATA
- See Also:
- Constant Field Values
-
PSD_SECTION_IMAGE_DATA
private static final int PSD_SECTION_IMAGE_DATA
- See Also:
- Constant Field Values
-
PSD_HEADER_LENGTH
private static final int PSD_HEADER_LENGTH
- See Also:
- Constant Field Values
-
COLOR_MODE_INDEXED
private static final int COLOR_MODE_INDEXED
- See Also:
- Constant Field Values
-
IMAGE_RESOURCE_ID_ICC_PROFILE
public static final int IMAGE_RESOURCE_ID_ICC_PROFILE
- See Also:
- Constant Field Values
-
IMAGE_RESOURCE_ID_XMP
public static final int IMAGE_RESOURCE_ID_XMP
- See Also:
- Constant Field Values
-
BLOCK_NAME_XMP
public static final java.lang.String BLOCK_NAME_XMP
- See Also:
- Constant Field Values
-
-
Method Detail
-
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<PsdImagingParameters>- 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.
-
getAcceptedExtensions
protected java.lang.String[] getAcceptedExtensions()
Description copied from class:AbstractImageParserGets an array of all accepted extensions- Specified by:
getAcceptedExtensionsin classAbstractImageParser<PsdImagingParameters>- 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<PsdImagingParameters>- Returns:
- A valid array of one or more elements.
-
getBufferedImage
public java.awt.image.BufferedImage getBufferedImage(ByteSource byteSource, PsdImagingParameters 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<PsdImagingParameters>- 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.
-
getChannelsPerMode
private int getChannelsPerMode(int mode)
-
getData
private byte[] getData(ByteSource byteSource, int section) throws ImagingException, java.io.IOException
- Throws:
ImagingExceptionjava.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<PsdImagingParameters>- Returns:
- A valid string.
-
getDefaultParameters
public PsdImagingParameters getDefaultParameters()
Description copied from class:AbstractImageParserGets a default parameters instance for this parser.- Specified by:
getDefaultParametersin classAbstractImageParser<PsdImagingParameters>- Returns:
- default parameters instance
-
getIccProfileBytes
public byte[] getIccProfileBytes(ByteSource byteSource, PsdImagingParameters 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<PsdImagingParameters>- 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, PsdImagingParameters 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<PsdImagingParameters>- 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, PsdImagingParameters 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<PsdImagingParameters>- 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.
-
getInputStream
private java.io.InputStream getInputStream(ByteSource byteSource, int section) throws ImagingException, java.io.IOException
- Throws:
ImagingExceptionjava.io.IOException
-
getMetadata
public ImageMetadata getMetadata(ByteSource byteSource, PsdImagingParameters 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<PsdImagingParameters>- 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<PsdImagingParameters>- Returns:
- a valid, subject-matter-specific string.
-
getXmpXml
public java.lang.String getXmpXml(ByteSource byteSource, XmpImagingParameters params) throws ImagingException, java.io.IOException
Extracts embedded XML metadata as XML string.- Specified by:
getXmpXmlin 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:
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.
-
keepImageResourceBlock
private boolean keepImageResourceBlock(int id, int[] imageResourceIDs)
-
readHeader
private PsdHeaderInfo readHeader(ByteSource byteSource) throws ImagingException, java.io.IOException
- Throws:
ImagingExceptionjava.io.IOException
-
readHeader
private PsdHeaderInfo readHeader(java.io.InputStream is) throws ImagingException, java.io.IOException
- Throws:
ImagingExceptionjava.io.IOException
-
readImageContents
private PsdImageContents readImageContents(ByteSource byteSource) throws ImagingException, java.io.IOException
- Throws:
ImagingExceptionjava.io.IOException
-
readImageContents
private PsdImageContents readImageContents(java.io.InputStream is) throws ImagingException, java.io.IOException
- Throws:
ImagingExceptionjava.io.IOException
-
readImageResourceBlocks
private java.util.List<ImageResourceBlock> readImageResourceBlocks(byte[] bytes, int[] imageResourceIDs, int maxBlocksToRead) throws ImagingException, java.io.IOException
- Throws:
ImagingExceptionjava.io.IOException
-
readImageResourceBlocks
private java.util.List<ImageResourceBlock> readImageResourceBlocks(ByteSource byteSource, int[] imageResourceIDs, int maxBlocksToRead) throws ImagingException, java.io.IOException
- Throws:
ImagingExceptionjava.io.IOException
-
readImageResourceBlocks
private java.util.List<ImageResourceBlock> readImageResourceBlocks(java.io.InputStream is, int[] imageResourceIDs, int maxBlocksToRead, int available) throws ImagingException, java.io.IOException
- Throws:
ImagingExceptionjava.io.IOException
-
-