Skip to main content

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

com.devexpress.system.JavaObject.clone()
com.devexpress.system.JavaObject.equals(java.lang.Object)
com.devexpress.system.JavaObject.hashCode()
com.devexpress.system.JavaObject.initFields()
com.devexpress.system.JavaObject.memberwiseClone()
com.devexpress.system.JavaObject.toString()
java.lang.Object.finalize()
java.lang.Object.getClass()
java.lang.Object.notify()
java.lang.Object.notifyAll()
java.lang.Object.wait()
java.lang.Object.wait(long)
java.lang.Object.wait(long,int)

Inheritance

Object
com.devexpress.system.JavaObject
ImageExportOptions

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

true if exported images are rasterized; otherwise, false (default).

Remarks

The following values are available:

false (default)
Slides are exported to vector format (EMF/SVG). The Resolution specifies the image size and does not affect image quality.
true
Slides are exported as raster images (DXBitmap). The Resolution option 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

true if exported images are rasterized; otherwise, false (default).

Remarks

The following values are available:

false (default)
Slides are exported to vector format (EMF/SVG). The Resolution specifies the image size and does not affect image quality.
true
Slides are exported as raster images (DXBitmap). The Resolution option 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.