Class ImageDataFactory
java.lang.Object
com.itextpdf.io.image.ImageDataFactory
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionstatic ImageDatacreate(byte[] bytes) Create an ImageData instance representing the image from the image bytes.static ImageDatacreate(byte[] bytes, boolean recoverImage) Create an ImageData instance representing the image from the image bytes.static ImageDatacreate(int width, int height, boolean reverseBits, int typeCCITT, int parameters, byte[] data, int[] transparency) Create an ImageData instance from the passed parameters.static ImageDatacreate(int width, int height, int components, int bpc, byte[] data, int[] transparency) Create an ImageData instance from the passed parameters.static ImageDataGets an instance of an Image from a java.awt.Imagestatic ImageDataGets an instance of an Image from a java.awt.Image.static ImageDataCreate an ImageData instance representing the image from the specified file.static ImageDataCreate an ImageData instance representing the image from the specified file.static ImageDataCreate an ImageData instance representing the image from the file located at the specified url.static ImageDataCreate an ImageData instance representing the image from the file located at the specified url.static ImageDatacreateBmp(byte[] bytes, boolean noHeader) Get a bitmap ImageData instance from the provided bytes.static ImageDataGet a bitmap ImageData instance from the specified url.static GifImageDatacreateGif(byte[] bytes) Return a GifImage object.static ImageDatacreateGifFrame(byte[] bytes, int frame) Returns a specified frame of the gif imagestatic ImageDatacreateGifFrame(URL url, int frame) Returns a specified frame of the gif imagecreateGifFrames(byte[] bytes) ReturnsListof gif image framescreateGifFrames(byte[] bytes, int[] frameNumbers) ReturnsListof gif image framescreateGifFrames(URL url) ReturnsListof gif image framescreateGifFrames(URL url, int[] frameNumbers) ReturnsListof gif image framesprivate static ImageDatacreateImageInstance(byte[] bytes, boolean recoverImage) private static ImageDatacreateImageInstance(URL source, boolean recoverImage) static ImageDatacreateJbig2(byte[] bytes, int page) static ImageDatacreateJbig2(URL url, int page) static ImageDatacreateJpeg(byte[] bytes) static ImageDatacreateJpeg(URL url) Create anImageDatainstance from a Jpeg image urlstatic ImageDatacreateJpeg2000(byte[] bytes) static ImageDatacreateJpeg2000(URL url) static ImageDatacreatePng(byte[] bytes) static ImageDatastatic ImageDatacreateRawImage(byte[] bytes) static ImageDatacreateTiff(byte[] bytes, boolean recoverFromImageError, int page, boolean direct) static ImageDatacreateTiff(URL url, boolean recoverFromImageError, int page, boolean direct) static booleanisSupportedType(byte[] source) Checks if the type of image (based on first 8 bytes) is supported by factory.static booleanisSupportedType(ImageType imageType) Checks if the type of image is supported by factory.static booleanisSupportedType(URL source) Checks if the type of image (based on first 8 bytes) is supported by factory.processGifImageAndExtractFrames(int[] frameNumbers, GifImageData image) private static voidvalidateImageType(byte[] image, ImageType expectedType) private static voidvalidateImageType(URL imageUrl, ImageType expectedType)
-
Constructor Details
-
ImageDataFactory
private ImageDataFactory()
-
-
Method Details
-
create
Create an ImageData instance representing the image from the image bytes.- Parameters:
bytes- byte representation of the image.recoverImage- whether to recover from a image error (for TIFF-images)- Returns:
- The created ImageData object.
-
create
Create an ImageData instance representing the image from the image bytes.- Parameters:
bytes- byte representation of the image.- Returns:
- The created ImageData object.
-
create
Create an ImageData instance representing the image from the file located at the specified url.- Parameters:
url- location of the imagerecoverImage- whether to recover from a image error (for TIFF-images)- Returns:
- The created ImageData object.
-
create
-
create
Create an ImageData instance representing the image from the specified file.- Parameters:
filename- filename of the file containing the imagerecoverImage- whether to recover from a image error (for TIFF-images)- Returns:
- The created ImageData object.
- Throws:
MalformedURLException- if an error occurred generating the URL.
-
create
Create an ImageData instance representing the image from the specified file.- Parameters:
filename- filename of the file containing the image- Returns:
- The created ImageData object.
- Throws:
MalformedURLException- if an error occurred generating the URL.
-
create
public static ImageData create(int width, int height, boolean reverseBits, int typeCCITT, int parameters, byte[] data, int[] transparency) Create an ImageData instance from the passed parameters.- Parameters:
width- width of the image in pixelsheight- height of the image in pixelsreverseBits- whether to reverse the bits stored in data (TIFF images).typeCCITT- Type of CCITT encodingparameters- colour space parametersdata- array containing raw image datatransparency- array containing transparency information- Returns:
- created ImageData object.
-
create
public static ImageData create(int width, int height, int components, int bpc, byte[] data, int[] transparency) Create an ImageData instance from the passed parameters.- Parameters:
width- width of the image in pixelsheight- height of the image in pixelscomponents- colour space componentsbpc- bits per colour.data- array containing raw image datatransparency- array containing transparency information- Returns:
- created ImageData object.
-
create
Gets an instance of an Image from a java.awt.Image- Parameters:
image- the java.awt.Image to convertcolor- if different fromnullthe transparency pixels are replaced by this color- Returns:
- RawImage
- Throws:
IOException- if an I/O error occurs.
-
create
Gets an instance of an Image from a java.awt.Image.- Parameters:
image- thejava.awt.Imageto convertcolor- if different fromnullthe transparency pixels are replaced by this colorforceBW- iftruethe image is treated as black and white- Returns:
- RawImage
- Throws:
IOException- if an I/O error occurs.
-
createBmp
-
createBmp
Get a bitmap ImageData instance from the provided bytes.- Parameters:
bytes- array containing the raw image datanoHeader- Whether the image contains a header.- Returns:
- created ImageData
-
createGif
Return a GifImage object. This object cannot be added to a document- Parameters:
bytes- array containing the raw image data- Returns:
- GifImageData instance.
-
createGifFrame
-
createGifFrame
Returns a specified frame of the gif image- Parameters:
bytes- byte array of gif imageframe- number of frame to be returned, 1-based- Returns:
- GifImageData instance
-
createGifFrames
-
createGifFrames
-
createGifFrames
-
createGifFrames
-
createJbig2
-
createJbig2
-
createJpeg
-
createJpeg
-
createJpeg2000
-
createJpeg2000
-
createPng
-
createPng
-
createTiff
-
createTiff
public static ImageData createTiff(byte[] bytes, boolean recoverFromImageError, int page, boolean direct) -
createRawImage
-
isSupportedType
public static boolean isSupportedType(byte[] source) Checks if the type of image (based on first 8 bytes) is supported by factory.
Note: if this method returnstrueit doesn't means thatcreate(byte[])won't throw exception- Parameters:
source- image raw bytes- Returns:
trueif first eight bytes are recognised by factory as valid image type andfalseotherwise
-
isSupportedType
Checks if the type of image (based on first 8 bytes) is supported by factory.
Note: if this method returnstrueit doesn't means thatcreate(byte[])won't throw exception- Parameters:
source- image URL- Returns:
trueif first eight bytes are recognised by factory as valid image type andfalseotherwise
-
isSupportedType
Checks if the type of image is supported by factory.
Note: if this method returnstrueit doesn't means thatcreate(byte[])won't throw exception- Parameters:
imageType- image type- Returns:
trueif image type is supported andfalseotherwise
-
createImageInstance
-
createImageInstance
-
processGifImageAndExtractFrames
private static List<ImageData> processGifImageAndExtractFrames(int[] frameNumbers, GifImageData image) -
validateImageType
-
validateImageType
-