Package com.snowtide.pdf.layout
Enum Image.Format
- java.lang.Object
-
- java.lang.Enum<Image.Format>
-
- com.snowtide.pdf.layout.Image.Format
-
- All Implemented Interfaces:
Serializable
,Comparable<Image.Format>
- Enclosing interface:
- Image
public static enum Image.Format extends Enum<Image.Format>
An enumeration of the different formats in whichimage data
may be produced, as indicated byImage.dataFormat()
.- Version:
- ©2004-2024 Snowtide
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static Image.Format
valueOf(String name)
Returns the enum constant of this type with the specified name.static Image.Format[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
JPEG
public static final Image.Format JPEG
-
TIFF
public static final Image.Format TIFF
-
GIF
public static final Image.Format GIF
-
PNG
public static final Image.Format PNG
-
JPX
public static final Image.Format JPX
Note that while PDFxStream can extract JPX / JPEG2000 image files from PDF documents, it cannot decode them to provide runtimebitmap
objects. To work with extracted JPEG2000 images, obtain each image'sImage.data()
, and use other libraries or external tools to decode that data to meet your requirements.
-
BMP
public static final Image.Format BMP
-
-
Method Detail
-
values
public static Image.Format[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (Image.Format c : Image.Format.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Image.Format valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
-