Class JpegImageParser
- java.lang.Object
-
- org.apache.commons.imaging.common.BinaryFileParser
-
- org.apache.commons.imaging.ImageParser
-
- org.apache.commons.imaging.formats.jpeg.JpegImageParser
-
- All Implemented Interfaces:
XmpEmbeddable
public class JpegImageParser extends ImageParser implements XmpEmbeddable
-
-
Field Summary
Fields Modifier and Type Field Description private static java.lang.String[]ACCEPTED_EXTENSIONSprivate static java.lang.StringDEFAULT_EXTENSIONprivate static java.util.logging.LoggerLOGGER
-
Constructor Summary
Constructors Constructor Description JpegImageParser()
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description private byte[]assembleSegments(java.util.List<App2Segment> segments)private byte[]assembleSegments(java.util.List<App2Segment> segments, boolean startWithZero)booleandumpImageFile(java.io.PrintWriter pw, ByteSource byteSource)Write the ImageInfo and format-specific information for the image content of the specified byte source to a PrintWriterprivate voiddumpSegments(java.util.List<? extends Segment> v)private java.util.List<Segment>filterAPP1Segments(java.util.List<Segment> segments)protected java.lang.String[]getAcceptedExtensions()Get an array of all accepted extensionsprotected ImageFormat[]getAcceptedTypes()Get an array of ImageFormat objects describing all accepted typesjava.awt.image.BufferedImagegetBufferedImage(ByteSource byteSource, java.util.Map<java.lang.String,java.lang.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).java.lang.StringgetDefaultExtension()Get the default extension for the format specified by an implementation of ImageParser.TiffImageMetadatagetExifMetadata(ByteSource byteSource, java.util.Map<java.lang.String,java.lang.Object> params)byte[]getExifRawData(ByteSource byteSource)byte[]getICCProfileBytes(ByteSource byteSource, java.util.Map<java.lang.String,java.lang.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.ImageInfogetImageInfo(ByteSource byteSource, java.util.Map<java.lang.String,java.lang.Object> params)Get image information from the specified ByteSource.java.awt.DimensiongetImageSize(ByteSource byteSource, java.util.Map<java.lang.String,java.lang.Object> params)Get the size of the image described by the specified ByteSource.ImageMetadatagetMetadata(ByteSource byteSource, java.util.Map<java.lang.String,java.lang.Object> params)Get image metadata from the specified byte source.java.lang.StringgetName()Get a descriptive name for the implementation of an ImageParser.JpegPhotoshopMetadatagetPhotoshopMetadata(ByteSource byteSource, java.util.Map<java.lang.String,java.lang.Object> params)java.lang.StringgetXmpXml(ByteSource byteSource, java.util.Map<java.lang.String,java.lang.Object> params)Extracts embedded XML metadata as XML string.booleanhasExifSegment(ByteSource byteSource)booleanhasIptcSegment(ByteSource byteSource)booleanhasXmpSegment(ByteSource byteSource)static booleanisExifAPP1Segment(GenericSegment segment)private booleankeepMarker(int marker, int[] markers)java.util.List<Segment>readSegments(ByteSource byteSource, int[] markers, boolean returnAfterFirst)java.util.List<Segment>readSegments(ByteSource byteSource, int[] markers, boolean returnAfterFirst, boolean readEverything)-
Methods inherited from class org.apache.commons.imaging.ImageParser
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, isStrict, writeImage
-
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
- See Also:
- Constant Field Values
-
ACCEPTED_EXTENSIONS
private static final java.lang.String[] ACCEPTED_EXTENSIONS
-
-
Method Detail
-
getAcceptedTypes
protected ImageFormat[] getAcceptedTypes()
Description copied from class:ImageParserGet an array of ImageFormat objects describing all accepted types- Specified by:
getAcceptedTypesin classImageParser- Returns:
- A valid array of one or more elements.
-
getName
public java.lang.String getName()
Description copied from class:ImageParserGet a descriptive name for the implementation of an ImageParser.- Specified by:
getNamein classImageParser- Returns:
- a valid, subject-matter-specific string.
-
getDefaultExtension
public java.lang.String getDefaultExtension()
Description copied from class:ImageParserGet 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 classImageParser- Returns:
- A valid string.
-
getAcceptedExtensions
protected java.lang.String[] getAcceptedExtensions()
Description copied from class:ImageParserGet an array of all accepted extensions- Specified by:
getAcceptedExtensionsin classImageParser- Returns:
- A valid array of one or more elements.
-
getBufferedImage
public final java.awt.image.BufferedImage getBufferedImage(ByteSource byteSource, java.util.Map<java.lang.String,java.lang.Object> params) throws ImageReadException, java.io.IOException
Description copied from class:ImageParserGets 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 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.java.io.IOException- In the event of unsuccessful read or access operation.
-
keepMarker
private boolean keepMarker(int marker, int[] markers)
-
readSegments
public java.util.List<Segment> readSegments(ByteSource byteSource, int[] markers, boolean returnAfterFirst, boolean readEverything) throws ImageReadException, java.io.IOException
- Throws:
ImageReadExceptionjava.io.IOException
-
assembleSegments
private byte[] assembleSegments(java.util.List<App2Segment> segments) throws ImageReadException
- Throws:
ImageReadException
-
assembleSegments
private byte[] assembleSegments(java.util.List<App2Segment> segments, boolean startWithZero) throws ImageReadException
- Throws:
ImageReadException
-
dumpSegments
private void dumpSegments(java.util.List<? extends Segment> v)
-
readSegments
public java.util.List<Segment> readSegments(ByteSource byteSource, int[] markers, boolean returnAfterFirst) throws ImageReadException, java.io.IOException
- Throws:
ImageReadExceptionjava.io.IOException
-
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:ImageParserGet 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 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.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:ImageParserGet 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 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.java.io.IOException- In the event of unsuccessful data read operation.
-
isExifAPP1Segment
public static boolean isExifAPP1Segment(GenericSegment segment)
-
filterAPP1Segments
private java.util.List<Segment> filterAPP1Segments(java.util.List<Segment> segments)
-
getExifMetadata
public TiffImageMetadata getExifMetadata(ByteSource byteSource, java.util.Map<java.lang.String,java.lang.Object> params) throws ImageReadException, java.io.IOException
- Throws:
ImageReadExceptionjava.io.IOException
-
getExifRawData
public byte[] getExifRawData(ByteSource byteSource) throws ImageReadException, java.io.IOException
- Throws:
ImageReadExceptionjava.io.IOException
-
hasExifSegment
public boolean hasExifSegment(ByteSource byteSource) throws ImageReadException, java.io.IOException
- Throws:
ImageReadExceptionjava.io.IOException
-
hasIptcSegment
public boolean hasIptcSegment(ByteSource byteSource) throws ImageReadException, java.io.IOException
- Throws:
ImageReadExceptionjava.io.IOException
-
hasXmpSegment
public boolean hasXmpSegment(ByteSource byteSource) throws ImageReadException, java.io.IOException
- Throws:
ImageReadExceptionjava.io.IOException
-
getXmpXml
public java.lang.String getXmpXml(ByteSource byteSource, java.util.Map<java.lang.String,java.lang.Object> params) throws ImageReadException, 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:
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.
-
getPhotoshopMetadata
public JpegPhotoshopMetadata getPhotoshopMetadata(ByteSource byteSource, java.util.Map<java.lang.String,java.lang.Object> params) throws ImageReadException, java.io.IOException
- Throws:
ImageReadExceptionjava.io.IOException
-
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:ImageParserGet the size of the image described by the specified ByteSource.- Specified by:
getImageSizein 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.java.io.IOException- In the event of unsuccessful read or access 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:ImageParserGet 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 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.java.io.IOException- In the event of unsuccessful data access operation.
-
dumpImageFile
public boolean dumpImageFile(java.io.PrintWriter pw, ByteSource byteSource) throws ImageReadException, java.io.IOExceptionDescription copied from class:ImageParserWrite the ImageInfo and format-specific information for the image content of the specified byte source to a PrintWriter- Overrides:
dumpImageFilein 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.java.io.IOException- In the event of unsuccessful read or access operation.
-
-