PDF Generation Template Editor
Open-source visual PDF generation engine with customizable templates and developer-friendly APIs.
Open-source visual PDF generation engine with customizable templates and developer-friendly APIs.
ComPDF supports opening local PDF documents or creating new ones.
The steps to open a local PDF document using a file path are as follows:
CDFDocument object using the file path.This example shows how to open a local PDF document:
let url = URL(fileURLWithPath: "File Path")
// Initialize a `CPDFDocument` object using the PDF file path.
let document = CPDFDocument(url: url)
if let error = document?.error, error._code != CPDFDocumentPasswordError {
}
// For encrypted documents, it is necessary to use a password to decrypt them.
if document?.isLocked == true {
document?.unlock(withPassword: "password")
}NSURL *url = [NSURL fileURLWithPath:@""];
// Initialize a `CPDFDocument` object using the PDF file path.
CPDFDocument *document = [[CPDFDocument alloc] initWithURL:url];
if (document.error &&
document.error.code == CPDFDocumentPasswordError) {
}
// For encrypted documents, it is necessary to use a password to decrypt them.
if (document.isLocked) {
[document unlockWithPassword:@"password"];
}This example shows how to create a new PDF document:
let url = URL(fileURLWithPath: "File Path")
let document = CPDFDocument(url: url)NSURL *url = [NSURL fileURLWithPath:@"File Path"];
CPDFDocument *document = [[CPDFDocument alloc] initWithURL:url];By default, a newly created document doesn't contain any pages. Please refer to the "Document Editing" functionality to learn how to create new pages and add existing pages to the document.
This is the explanation of opening document status:
| Status Code | Description |
|---|---|
| CPDFDocumentUnknownError | Unknown error. |
| CPDFDocumentFileError | File not found or cannot be opened. |
| CPDFDocumentFormatError | Format Error: not a PDF or corrupted. |
| CPDFDocumentPasswordError | Password required or incorrect password. |
| CPDFDocumentSecurityError | Unsupported security scheme. |
| CPDFDocumentPageError | Page not found or content error. |