public final class Imaging
extends java.lang.Object
Almost all of the Apache Commons Imaging library's core functionality can be accessed through the methods provided by this class. The use of the Imaging class is similar to the Java API's ImageIO class, though Imaging supports formats not included in the standard Java API.
All of methods provided by the Imaging class are declared static.
The Apache Commons Imaging package is a pure Java implementation.
While the Apache Commons Imaging package handles a number of different graphics formats, support for some formats is not yet complete. For the most recent information on support for specific formats, refer to Format Support at the main project development web site.
Many of the operations provided in this class as static calls can be accessed directly
using format-specific ImageParser
instances. These static methods are provided
for convenience in simple use cases.
See the source of the SampleUsage class and other classes in the org.apache.commons.imaging.examples package for examples.
Modifier and Type | Method and Description |
---|---|
static java.lang.String |
dumpImageFile(byte[] bytes)
Write the ImageInfo and format-specific information for the image content of the specified byte array to a string.
|
static java.lang.String |
dumpImageFile(java.io.File file)
Write the ImageInfo and format-specific information for the image content of the specified file to a string.
|
static java.util.List<java.awt.image.BufferedImage> |
getAllBufferedImages(byte[] bytes)
Gets all images specified by the byte array (some formats may include multiple images within a single data source).
|
static java.util.List<java.awt.image.BufferedImage> |
getAllBufferedImages(java.io.File file)
Gets all images specified by the file (some formats may include multiple images within a single data source).
|
static java.util.List<java.awt.image.BufferedImage> |
getAllBufferedImages(java.io.InputStream is,
java.lang.String fileName)
Gets all images specified by the InputStream (some formats may include multiple images within a single data source).
|
static java.awt.image.BufferedImage |
getBufferedImage(byte[] bytes)
Reads the first image from a byte array.
|
static java.awt.image.BufferedImage |
getBufferedImage(java.io.File file)
Reads the first image from a file.
|
static java.awt.image.BufferedImage |
getBufferedImage(java.io.InputStream is)
Reads the first image from an InputStream.
|
static java.awt.image.BufferedImage |
getBufferedImage(java.io.InputStream is,
java.lang.String fileName)
Reads the first image from an InputStream.
|
static FormatCompliance |
getFormatCompliance(byte[] bytes)
Attempts to determine the image format of the specified data and evaluates its format compliance.
|
static FormatCompliance |
getFormatCompliance(java.io.File file)
Attempts to determine the image format of the specified data and
evaluates its format compliance.
|
static java.awt.color.ICC_Profile |
getICCProfile(byte[] bytes)
Extracts an ICC Profile (if present) from JPEG, PNG, PSD (Photoshop) and TIFF images.
|
static java.awt.color.ICC_Profile |
getICCProfile(java.io.File file)
Extracts an ICC Profile (if present) from JPEG, PNG, PSD (Photoshop) and TIFF images.
|
static java.awt.color.ICC_Profile |
getICCProfile(java.io.InputStream is,
java.lang.String fileName)
Extracts an ICC Profile (if present) from JPEG, PNG, PSD (Photoshop) and TIFF images.
|
static byte[] |
getICCProfileBytes(byte[] bytes)
Extracts the raw bytes of an ICC Profile (if present) from JPEG, PNG, PSD
(Photoshop) and TIFF images.
|
static byte[] |
getICCProfileBytes(java.io.File file)
Extracts the raw bytes of an ICC Profile (if present) from JPEG, PNG, PSD
(Photoshop) and TIFF images.
|
static ImageInfo |
getImageInfo(byte[] bytes)
Parses the "image info" of an image.
|
static ImageInfo |
getImageInfo(java.io.File file)
Parses the "image info" of an image file.
|
static ImageInfo |
getImageInfo(java.io.InputStream is,
java.lang.String fileName)
Parses the "image info" of an image.
|
static ImageInfo |
getImageInfo(java.lang.String fileName,
byte[] bytes)
Parses the "image info" of an image.
|
static java.awt.Dimension |
getImageSize(byte[] bytes)
Determines the width and height of an image.
|
static java.awt.Dimension |
getImageSize(ByteSource byteSource)
Determines the width and height of an image byte source.
|
static java.awt.Dimension |
getImageSize(java.io.File file)
Determines the width and height of an image file.
|
static java.awt.Dimension |
getImageSize(java.io.InputStream is,
java.lang.String fileName)
Determines the width and height of an image.
|
static org.apache.commons.imaging.common.ImageMetadata |
getMetadata(byte[] bytes)
Parses the metadata of an image.
|
static org.apache.commons.imaging.common.ImageMetadata |
getMetadata(java.io.File file)
Parses the metadata of an image file.
|
static org.apache.commons.imaging.common.ImageMetadata |
getMetadata(java.io.InputStream is,
java.lang.String fileName)
Parses the metadata of an image file.
|
static java.lang.String |
getXmpXml(byte[] bytes)
Extracts the embedded XML metadata as an XML string.
|
static java.lang.String |
getXmpXml(ByteSource byteSource)
Extracts the embedded XML metadata as an XML string.
|
static java.lang.String |
getXmpXml(java.io.File file)
Extracts the embedded XML metadata as an XML string.
|
static java.lang.String |
getXmpXml(java.io.InputStream is,
java.lang.String fileName)
Extracts the embedded XML metadata as an XML string.
|
static ImageFormat |
guessFormat(byte[] bytes)
Attempts to determine the image format of a file based on its "magic numbers," the first bytes of the data.
|
static ImageFormat |
guessFormat(ByteSource byteSource)
Attempts to determine the image format of a file based on its "magic numbers," the first bytes of the data.
|
static ImageFormat |
guessFormat(java.io.File file)
Attempts to determine the image format of a file based on its "magic numbers," the first bytes of the data.
|
static boolean |
hasImageFileExtension(java.io.File file)
Attempts to determine if a file contains an image recorded in
a supported graphics format based on its file-name extension
(for example ".jpg", ".gif", ".png", etc.).
|
static boolean |
hasImageFileExtension(java.lang.String fileName)
Attempts to determine if a file contains an image recorded in
a supported graphics format based on its file-name extension
(for example ".jpg", ".gif", ".png", etc.).
|
static void |
writeImage(java.awt.image.BufferedImage src,
java.io.File file,
ImageFormat format)
Writes the content of a BufferedImage to a file using the specified image format.
|
static void |
writeImage(java.awt.image.BufferedImage src,
java.io.OutputStream os,
ImageFormat format)
Writes the content of a BufferedImage to an OutputStream using the specified image format.
|
static byte[] |
writeImageToBytes(java.awt.image.BufferedImage src,
ImageFormat format)
Writes the content of a BufferedImage to a byte array using the specified image format.
|
public static boolean hasImageFileExtension(java.io.File file)
file
- A valid File object providing a reference to a file that may contain an image.public static boolean hasImageFileExtension(java.lang.String fileName)
fileName
- A valid string representing name of file which may contain an image.public static ImageFormat guessFormat(byte[] bytes) throws java.io.IOException
Many graphics format specify identifying byte values that appear at the beginning of the data file. This method checks for such identifying elements and returns a ImageFormat enumeration indicating what it detects. Note that this method can return "false positives" in cases where non-image files begin with the specified byte values.
bytes
- Byte array containing an image file.java.io.IOException
- in the event of an unrecoverable I/O condition.public static ImageFormat guessFormat(java.io.File file) throws java.io.IOException
Many graphics formats specify identifying byte values that appear at the beginning of the data file. This method checks for such identifying elements and returns a ImageFormat enumeration indicating what it detects. Note that this method can return "false positives" in cases where non-image files begin with the specified byte values.
file
- File containing image data.java.io.IOException
- in the event of an unrecoverable I/O condition.public static ImageFormat guessFormat(ByteSource byteSource) throws java.io.IOException
Many graphics formats specify identifying byte values that appear at the beginning of the data file. This method checks for such identifying elements and returns a ImageFormat enumeration indicating what it detects. Note that this method can return "false positives" in cases where non-image files begin with the specified byte values.
byteSource
- a valid ByteSource object potentially supplying data for an image.java.lang.IllegalArgumentException
- in the event of an unsuccessful attempt to read the image datajava.io.IOException
- in the event of an unrecoverable I/O condition.public static java.awt.color.ICC_Profile getICCProfile(byte[] bytes) throws ImageReadException, java.io.IOException
bytes
- Byte array containing an image file.ImageReadException
- if it fails to parse the imagejava.io.IOException
- if it fails to read the image datapublic static java.awt.color.ICC_Profile getICCProfile(java.io.InputStream is, java.lang.String fileName) throws ImageReadException, java.io.IOException
is
- InputStream from which to read image data.fileName
- Filename associated with image data (optional).ImageReadException
- if it fails to parse the imagejava.io.IOException
- if it fails to read the image datapublic static java.awt.color.ICC_Profile getICCProfile(java.io.File file) throws ImageReadException, java.io.IOException
file
- File containing image data.ImageReadException
- if it fails to parse the imagejava.io.IOException
- if it fails to read the image datapublic static byte[] getICCProfileBytes(byte[] bytes) throws ImageReadException, java.io.IOException
To parse the result use IccProfileParser or ICC_Profile.getInstance(bytes).
bytes
- Byte array containing an image file.ImageReadException
- if it fails to parse the imagejava.io.IOException
- if it fails to read the image dataIccProfileParser
,
ICC_Profile
public static byte[] getICCProfileBytes(java.io.File file) throws ImageReadException, java.io.IOException
To parse the result use IccProfileParser or ICC_Profile.getInstance(bytes).
file
- File containing image data.ImageReadException
- if it fails to parse the imagejava.io.IOException
- if it fails to read the image dataIccProfileParser
,
ICC_Profile
public static ImageInfo getImageInfo(java.lang.String fileName, byte[] bytes) throws ImageReadException, java.io.IOException
"Image info" is a summary of basic information about the image such as: width, height, file format, bit depth, color type, etc.
Not to be confused with "image metadata."
fileName
- String.bytes
- Byte array containing an image file.ImageReadException
- if it fails to parse the imagejava.io.IOException
- if it fails to read the image dataImageInfo
public static ImageInfo getImageInfo(java.io.InputStream is, java.lang.String fileName) throws ImageReadException, java.io.IOException
"Image info" is a summary of basic information about the image such as: width, height, file format, bit depth, color type, etc.
Not to be confused with "image metadata."
is
- InputStream from which to read image data.fileName
- Filename associated with image data (optional).ImageReadException
- if it fails to parse the imagejava.io.IOException
- if it fails to read the image dataImageInfo
public static ImageInfo getImageInfo(byte[] bytes) throws ImageReadException, java.io.IOException
"Image info" is a summary of basic information about the image such as: width, height, file format, bit depth, color type, etc.
Not to be confused with "image metadata."
bytes
- Byte array containing an image file.ImageReadException
- if it fails to parse the imagejava.io.IOException
- if it fails to read the image dataImageInfo
public static ImageInfo getImageInfo(java.io.File file) throws ImageReadException, java.io.IOException
"Image info" is a summary of basic information about the image such as: width, height, file format, bit depth, color type, etc.
Not to be confused with "image metadata."
file
- File containing image data.ImageReadException
- if it fails to parse the imagejava.io.IOException
- if it fails to read the image dataImageInfo
public static java.awt.Dimension getImageSize(java.io.InputStream is, java.lang.String fileName) throws ImageReadException, java.io.IOException
is
- InputStream from which to read image data.fileName
- Filename associated with image data (optional).ImageReadException
- if it fails to parse the imagejava.io.IOException
- if it fails to read the image datapublic static java.awt.Dimension getImageSize(byte[] bytes) throws ImageReadException, java.io.IOException
bytes
- Byte array containing an image file.ImageReadException
- if it fails to parse the imagejava.io.IOException
- if it fails to read the image datapublic static java.awt.Dimension getImageSize(java.io.File file) throws ImageReadException, java.io.IOException
file
- File containing image data.ImageReadException
- if it fails to parse the imagejava.io.IOException
- if it fails to read the image datapublic static java.awt.Dimension getImageSize(ByteSource byteSource) throws ImageReadException, java.io.IOException
byteSource
- Byte source data.ImageReadException
- if it fails to parse the imagejava.io.IOException
- if it fails to read the image datapublic static java.lang.String getXmpXml(java.io.InputStream is, java.lang.String fileName) throws ImageReadException, java.io.IOException
is
- InputStream from which to read image data.fileName
- Filename associated with image data (optional).ImageReadException
- if it fails to parse the imagejava.io.IOException
- if it fails to read the image datapublic static java.lang.String getXmpXml(byte[] bytes) throws ImageReadException, java.io.IOException
bytes
- Byte array containing an image file.ImageReadException
- if it fails to parse the imagejava.io.IOException
- if it fails to read the image datapublic static java.lang.String getXmpXml(java.io.File file) throws ImageReadException, java.io.IOException
file
- File containing image data.ImageReadException
- if it fails to parse the imagejava.io.IOException
- if it fails to read the image datapublic static java.lang.String getXmpXml(ByteSource byteSource) throws ImageReadException, java.io.IOException
byteSource
- File containing image data.ImageReadException
- if it fails to parse the imagejava.io.IOException
- if it fails to read the image datapublic static org.apache.commons.imaging.common.ImageMetadata getMetadata(byte[] bytes) throws ImageReadException, java.io.IOException
JPEG/JFIF files may contain EXIF and/or IPTC metadata. PNG files may contain comments. TIFF files may contain metadata.
The instance of IImageMetadata returned by getMetadata() should be upcast (depending on image format).
Not to be confused with "image info."
bytes
- Byte array containing an image file.ImageReadException
- if it fails to read the image metadatajava.io.IOException
- if it fails to read the image dataImageMetadata
public static org.apache.commons.imaging.common.ImageMetadata getMetadata(java.io.InputStream is, java.lang.String fileName) throws ImageReadException, java.io.IOException
JPEG/JFIF files may contain EXIF and/or IPTC metadata. PNG files may contain comments. TIFF files may contain metadata.
The instance of IImageMetadata returned by getMetadata() should be upcast (depending on image format).
Not to be confused with "image info."
is
- InputStream from which to read image data.fileName
- Filename associated with image data (optional).ImageReadException
- if it fails to read the image metadatajava.io.IOException
- if it fails to read the image dataImageMetadata
public static org.apache.commons.imaging.common.ImageMetadata getMetadata(java.io.File file) throws ImageReadException, java.io.IOException
JPEG/JFIF files may contain EXIF and/or IPTC metadata. PNG files may contain comments. TIFF files may contain metadata.
The instance of IImageMetadata returned by getMetadata() should be upcast (depending on image format).
Not to be confused with "image info."
file
- File containing image data.ImageReadException
- if it fails to read the image metadatajava.io.IOException
- if it fails to read the image dataImageMetadata
public static java.lang.String dumpImageFile(byte[] bytes) throws ImageReadException, java.io.IOException
bytes
- A valid array of bytes.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.public static java.lang.String dumpImageFile(java.io.File file) throws ImageReadException, java.io.IOException
file
- A valid file reference.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.public static FormatCompliance getFormatCompliance(byte[] bytes) throws ImageReadException, java.io.IOException
This method returns a FormatCompliance object which includes information about the data's compliance to a specific format.
bytes
- a valid array of bytes containing image data.ImageReadException
- in the event of unreadable data.java.io.IOException
- in the event of an unrecoverable I/O condition.public static FormatCompliance getFormatCompliance(java.io.File file) throws ImageReadException, java.io.IOException
file
- valid file containing image dataImageReadException
- in the event of unreadable data.java.io.IOException
- in the event of an unrecoverable I/O condition.public static java.util.List<java.awt.image.BufferedImage> getAllBufferedImages(java.io.InputStream is, java.lang.String fileName) throws ImageReadException, java.io.IOException
is
- A valid InputStreamfileName
- Filename associated with image data (optional).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.public static java.util.List<java.awt.image.BufferedImage> getAllBufferedImages(byte[] bytes) throws ImageReadException, java.io.IOException
bytes
- a valid array of bytesImageReadException
- 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.public static java.util.List<java.awt.image.BufferedImage> getAllBufferedImages(java.io.File file) throws ImageReadException, java.io.IOException
file
- A reference to a valid data file.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.public static java.awt.image.BufferedImage getBufferedImage(java.io.InputStream is) throws ImageReadException, java.io.IOException
For the most recent information on support for specific formats, refer to Format Support at the main project development web site. While the Apache Commons Imaging package does not fully support all formats, it can read image info, metadata and ICC profiles from all image formats that provide this data.
is
- a valid ImageStream from which to read data.ImageReadException
- in the event of a processing errorfileName while reading an image (i.e. a format violation, etc.).java.io.IOException
- in the event of an unrecoverable I/O exception.public static java.awt.image.BufferedImage getBufferedImage(java.io.InputStream is, java.lang.String fileName) throws ImageReadException, java.io.IOException
For the most recent information on support for specific formats, refer to Format Support at the main project development web site. While the Apache Commons Imaging package does not fully support all formats, it can read image info, metadata and ICC profiles from all image formats that provide this data.
is
- a valid ImageStream from which to read data.fileName
- the image file name.ImageReadException
- in the event of a processing error while reading an image (i.e. a format violation, etc.).java.io.IOException
- in the event of an unrecoverable I/O exception.public static java.awt.image.BufferedImage getBufferedImage(byte[] bytes) throws ImageReadException, java.io.IOException
For the most recent information on support for specific formats, refer to Format Support at the main project development web site. While the Apache Commons Imaging package does not fully support all formats, it can read image info, metadata and ICC profiles from all image formats that provide this data.
bytes
- a valid array of bytes from which to read data.ImageReadException
- in the event of a processing error while reading an image (i.e. a format violation, etc.).java.io.IOException
- in the event of an unrecoverable I/O exception.public static java.awt.image.BufferedImage getBufferedImage(java.io.File file) throws ImageReadException, java.io.IOException
For the most recent information on support for specific formats, refer to Format Support at the main project development web site. While the Apache Commons Imaging package does not fully support all formats, it can read image info, metadata and ICC profiles from all image formats that provide this data.
file
- a valid reference to a file containing image data.ImageReadException
- in the event of a processing error while reading an image (i.e. a format violation, etc.).java.io.IOException
- in the event of an unrecoverable I/O exception.public static void writeImage(java.awt.image.BufferedImage src, java.io.File file, ImageFormat format) throws ImageWriteException, java.io.IOException
Image writing is not supported for all graphics formats. For the most recent information on support for specific formats, refer to Format Support at the main project development web site. While the Apache Commons Imaging package does not fully support all formats, it can read image info, metadata and ICC profiles from all image formats that provide this data.
src
- a valid BufferedImage objectfile
- the file to which the output image is to be writtenformat
- the format in which the output image is to be writtenImageWriteException
- in the event of a format violation, unsupported image format, etc.java.io.IOException
- in the event of an unrecoverable I/O exception.ImagingConstants
public static byte[] writeImageToBytes(java.awt.image.BufferedImage src, ImageFormat format) throws ImageWriteException, java.io.IOException
Image writing is not supported for all graphics formats. For the most recent information on support for specific formats, refer to Format Support at the main project development web site. While the Apache Commons Imaging package does not fully support all formats, it can read image info, metadata and ICC profiles from all image formats that provide this data.
src
- a valid BufferedImage objectformat
- the format in which the output image is to be writtenImageWriteException
- in the event of a format violation, unsupported image format, etc.java.io.IOException
- in the event of an unrecoverable I/O exception.ImagingConstants
public static void writeImage(java.awt.image.BufferedImage src, java.io.OutputStream os, ImageFormat format) throws ImageWriteException, java.io.IOException
Image writing is not supported for all graphics formats. For the most recent information on support for specific formats, refer to Format Support at the main project development web site. While the Apache Commons Imaging package does not fully support all formats, it can read image info, metadata and ICC profiles from all image formats that provide this data.
src
- a valid BufferedImage objectos
- the OutputStream to which the output image is to be writtenformat
- the format in which the output image is to be writtenImageWriteException
- in the event of a format violation, unsupported image format, etc.java.io.IOException
- in the event of an unrecoverable I/O exception.ImagingConstants
Copyright © 2010 - 2023 Adobe. All Rights Reserved