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 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.
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);