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.
To make a searchable PDF by adding invisible text to an image based PDF such as a scanned document using OCR.
When outputting a searchable PDF, you can use the following option to control the hidden text layer:
transparentText: Whether to output a transparent text layer.Full code sample which shows how to use the ComPDF OCR module on scanned documents in multiple languages.
ConverterManager.setAIModel("<model_path>")
val pdfOptions = SearchablePdfOptions()
pdfOptions.enableOcr = true
pdfOptions.ocrLanguages = listOf(OCRLanguage.ENGLISH)
val error = ComPDFKitConverter.startPDFToSearchablePDF("scan.pdf", "", "output.pdf", pdfOptions)