public enum ImageQuality extends Enum<ImageQuality>
The quality of images in the output HTML contained by the PDF documents.
Enum Constant and Description |
---|
HIGH
Best quality but slow performance.
|
LOW
The acceptable quality and best performance.
|
MEDIUM
Better quality and slower performance.
|
Modifier and Type | Method and Description |
---|---|
static ImageQuality |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ImageQuality[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ImageQuality HIGH
Best quality but slow performance.
public static final ImageQuality LOW
The acceptable quality and best performance.
public static final ImageQuality MEDIUM
Better quality and slower performance.
public static ImageQuality valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullpublic static ImageQuality[] values()
for (ImageQuality c : ImageQuality.values()) System.out.println(c);