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.
In the process of converting PDF documents into various formats, ComPDF Conversion SDK offers options to determine whether images are included in the generated document and whether annotations from the PDF file are retained.
In the Node.js SDK, use containImage and containAnnotation on the conversion options object.
const options = {
containImage: true,
containAnnotation: true,
enableAiLayout: true,
enableOcr: false
};
const result = sdk.startPDFToWord(inputFilePath, "", outputFilePath, options);