<< Click to Display Table of Contents >> TiffExportOptions |
[Windows Platform Only, Professional Edition and above]
Specifies options for exported TIFF images.
property TiffExportOptions [long] VPE.TiffExportOptions
read, write; runtime only
Possible Values:
several options
ActiveX / VCL |
Value |
Enum |
Comment |
PICEXP_TIFF_DEFAULT |
0 |
Default |
Default, save using CCITTFAX4 compression for 1-bit bitmaps and LZW compression for any other bitmaps |
PICEXP_TIFF_PACKBITS |
256 |
Packbits |
Save using PACKBITS compression |
PICEXP_TIFF_DEFLATE |
512 |
Deflate |
Save using DEFLATE compression (a.k.a. ZLIB compression) |
PICEXP_TIFF_ADOBE_DEFLATE |
1024 |
AdobeDeflate |
Save using ADOBE DEFLATE compression |
PICEXP_TIFF_NONE |
2048 |
None |
Save without any compression |
PICEXP_TIFF_CCITTFAX3 |
4096 |
Ccittfax3 |
Save using CCITT Group 3 fax encoding |
PICEXP_TIFF_CCITTFAX4 |
8192 |
Ccittfax4 |
Save using CCITT Group 4 fax encoding |
PICEXP_TIFF_LZW |
16384 |
Lzw |
Save using LZW compression |
PICEXP_TIFF_JPEG |
32768 |
Jpeg |
Save using JPEG compression (8-bit greyscale and 24-bit only. Default to LZW for other bitdepths.) |
PICEXP_TIFF_APPEND |
1073741824 |
Append |
Append file to multi-page TIFF |
Default:
PICEXP_TIFF_DEFAULT
Remarks:
The flag PICEXP_TIFF_APPEND can be combined with other flags.
Example:
Doc.TiffExportOptions = PICEXP_TIFF_DEFAULT + PICEXP_TIFF_APPEND