| Modifier and Type | Method and Description |
|---|---|
Image |
Image.changeResolution(int dpi)
Create a new image from an existing one modifying the resolution (dots per inch)
|
Image |
Image.clone()
Makes a copy of the image.
|
Image |
Image.clone(java.util.EnumSet<ElementCloneFlags> cloneFlags)
Makes a copy of the image.
|
Image |
Image.colorConvert(Document document,
ColorProfile prof,
RenderIntent intent,
boolean embed)
Applies the specified ICC ColorProfile to the Image
|
Image |
ImageCollection.getImage(int index)
Retrieve the Image object at the specified index.
|
Image |
Page.getImage(Rect exportRect)
Export a region of a PDF page to an Image object.
|
Image |
Page.getImage(Rect exportRect,
PageImageParams ImageParams)
Export a region of a PDF page to an Image object.
|
Image |
Page.getImage(Rect exportRect,
PageImageParams ImageParams,
java.util.List<SeparationColorSpace> spaces)
Export a region of a PDF page to an Image object.
|
Image |
Page.getOutputPreviewImage(Rect exportRect,
PageImageParams ImageParams,
java.util.List<SeparationColorSpace> spaces)
Create an Output Preview image used when Soft Proofing a document prior to actual printing.
|
Image |
Image.getSoftMask()
Gets, for this image, the soft mask (also an image).
|
| Modifier and Type | Method and Description |
|---|---|
void |
ImageCollection.append(Image image)
Insert the given Image object at the end of the ImageCollection.
|
Form |
OCREngine.placeTextUnder(Image image)
Recognize text in the image, returning a form element with the image and the text underneath.
|
Form |
OCREngine.placeTextUnder(Image image,
Document inDocument)
Recognize text in the image, returning a form element with the image and the text underneath.
|
void |
Image.setSoftMask(Image softMask)
Sets, for this image, the soft mask (also an image).
|
| Constructor and Description |
|---|
ImageCollection(Image image)
Create a new image collection containing the supplied Image object.
|