ImageExportOptions Class
Contains settings for exporting presentation slides as images.
Declaration
public class ImageExportOptions extends JavaObject
Remarks
Refer to the following help topic for additional information: Export Presentation Slides to Images.
Inherited Members
Inheritance
ImageExportOptions()
Initializes a new instance of the ImageExportOptions class.
Declaration
public ImageExportOptions()
Methods
getRasterize() Method
Indicates whether to rasterize vector objects during image export.
Declaration
public boolean getRasterize()
Returns
| Type | Description |
|---|---|
| boolean |
|
Remarks
The following values are available:
false(default)- Slides are exported to vector format (EMF/SVG). The
Resolutionspecifies the image size and does not affect image quality. true- Slides are exported as raster images (
DXBitmap). TheResolutionoption affects both the image size and the resolution value written to the image metadata.
getResolution() Method
Returns the exported image resolution, in DPI. Default is 96 DPI.
Declaration
public float getResolution()
Returns
| Type | Description |
|---|---|
| float | The resolution of exported images, in DPI. |
setRasterize(boolean value) Method
Indicates whether to rasterize vector objects during image export.
Declaration
public void setRasterize(boolean value)
Parameters
| Name | Type | Description |
|---|---|---|
| value | boolean |
|
Remarks
The following values are available:
false(default)- Slides are exported to vector format (EMF/SVG). The
Resolutionspecifies the image size and does not affect image quality. true- Slides are exported as raster images (
DXBitmap). TheResolutionoption affects both the image size and the resolution value written to the image metadata.
setResolution(float value) Method
Sets the exported image resolution, in DPI. Default is 96 DPI.
Declaration
public void setResolution(float value)
Parameters
| Name | Type | Description |
|---|---|---|
| value | float | The resolution of exported images, in DPI. |