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.
Once in content editing mode, developers can control which elements users are allowed to edit:
Toolbar Switch
Users can switch edit types using the bottom toolbar.
API Switch
If the toolbar is hidden, you can use the API:
// Enable only text editing
controller.editManager.changeEditType([CPDFEditType.text]);
// Enable both text and image editing
controller.editManager.changeEditType([CPDFEditType.text, CPDFEditType.image]);
// Disable all editing (read-only)
controller.editManager.changeEditType([CPDFEditType.none]);