Skip to content
ComPDF
DemoFAQ

PDF Generation Template Editor

Open-source visual PDF generation engine with customizable templates and developer-friendly APIs.

View on GitHub

Convert PDF to OFD

Overview

ComPDF Conversion SDK supports converting PDF documents to OFD documents. Similar to searchable PDF, OFD conversion also supports OCR, page background preservation, and transparent text layers.

Sample

java
LibraryManager.setDocumentAIModel("path/model");

OfdOptions opt = new OfdOptions();
opt.setEnableOcr(true);
opt.setOcrLanguages(Arrays.asList(
    OCRLanguage.ENGLISH
));
CPDFConversion.startPDFToOfd("scan.pdf", "password", "path/output.ofd", opt);