Click or drag to resize

CPDFDocumentWritePDFAToFilePath Method

Converts existing PDF files to PDF/A compliant documents, including PDF/A-1a and PDF/A-1b only. The conversion option analyzes the content of existing PDF files and performs a sequence of modifications in order to produce a PDF/A compliant document. Features that are not suitable for long-term archiving(such as encryption, obsolete compression schemes, missing fonts, or device-dependent color) are replaced with their PDF/A compliant equivalents.Because the conversion process applies only necessary changes to the source file, the information loss is minimal.

Namespace:  ComPDFKit.PDFDocument
Assembly:  ComPDFKit.NET (in ComPDFKit.NET.dll) Version: 2.0.0.0
Syntax
C#
public bool WritePDFAToFilePath(
	CPDFType type,
	string filePath
)

Parameters

type
Type: ComPDFKit.PDFDocumentCPDFType
PDF/A conformance levels.
filePath
Type: SystemString
Path of the converted document.

Return Value

Type: Boolean
Returns whether to convert successfully.
See Also