Image export options¶
The name of this structure is drImageExportOptions. It is used by the DefaultImageExportOptions and pImageExportOptions
Obsolete¶
The struct is obsolete per version 26 as setting HTML export options is now preferabily done via properties and no longer passing a pointer to the struct. Use of the struct as storage is permitted but setting a single export option should be done with the setter.
Struct layout¶
| Member | Type | Description | Default Value |
|---|---|---|---|
iImageType |
Integer | Can be one of Image Format constants | C_drJPEG |
bMultiPage |
Boolean | Export all pages (only applicable when iImageType is set to C_drTiff) |
True |
iPage |
Integer | Page number of single page to export | 1 |
Notes¶
- Defined in
cDRAPI.pkg
Change of default settings¶
With the introduction of getters for export options the defaults for export setting is now the same between Studio and integration.
| Member | < 26.0 | >=26.0 |
|---|---|---|
iImageType |
C_drTiff |
C_drJPEG |
MultiPage |
True |
False |
iPage |
0 |
1 |