ExportToPdfOperation class
An operation for image export into PDF format. Use the addPage method of the ExportOperation interface to export the image.
abstract static class IImagingCoreAPI.ExportToPdfOperation {
public Compression Compression;
public CompressionType CompressionType;
public int PageHeight;
public int PageWidth;
}
Properties
Name | Type | Description |
---|---|---|
CompressionType | CompressionType | Page compression. The value of this property can be currently only Jpg. |
Compression | Compression | Image compression. |
PageHeight | int |
Page heigth in points (1/72 per inch). If the value is 0, the page size is the same as the size of the image in pixels. The page size of A4 is 595x842. The default value of this property is 0. |
PageWidth | int |
Page width in points (1/72 of an inch). If the value is 0, the page size is the same as the size of the image in pixels. The default value of this property is 0. The page size of A4 is 595x842. |
PageHeight | int | Result PDF document height in millimeters. |
PdfInfoTitle | String | Title of the result PDF document. |
PdfInfoSubject | String | Subject of the result PDF document. |
PdfInfoKeywords | String | Keywords defined for the result PDF document. |
PdfInfoAuthor | String | Information about the result PDF document author. |
PdfInfoCompany | String | Information about the result PDF document company. |
PdfInfoCreator | String | Creator of the result PDF document. |
PdfInfoProducer | String | Producer of the result PDF document. |
3/2/2022 12:59:15 PM