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.
Layout analysis is the process of leveraging Artificial Intelligence (AI) technology to parse and understand the structure of a document's layout. Its primary goal is to extract text, images, tables, layers, and other data from the input documents.
Layout analysis has several common use cases, including:
Features that support Layout Analysis:
enableAITableRecognition. See 3.10 Table Recognition.This Sample demonstrates how to use the ComPDF OCR function to convert PDF to DOCX file.
[LibraryManager setDocumentAIModel:@"path/documentai_v4.model"];
WordOptions *options = [[WordOptions alloc] init];
options.enableAILayout = YES;
[CPDFConversion startPDFToWord:@"input.pdf" password:@"password" outputPath:@"path/output.docx" options:options];