TPDFlibSaveOptions
Data Types
Description
TPDFlibSaveOptions is a record structure that bundles compression, formatting, and optimization choices when writing or exporting a PDF document.
Syntax
Delphi
type TPDFlibSaveOptions = record
CompressContent: Boolean;
CompressFonts: Boolean;
CompressImages: Boolean;
Linearize: Boolean;
KeepModDate: Boolean;
end;Fields
| CompressContent | Enables compression of textual page content streams. |
|---|---|
| CompressFonts | Enables compression of embedded TrueType/Type1 font program streams. |
| CompressImages | Enables compression of uncompressed raster image pixel streams. |
| Linearize | Applies post-save linearization processing, optimizing the PDF catalog structure for fast web viewing (progressive page loading). |
| KeepModDate | Preserves the original modification date (/ModDate) in the document info dictionary. |