Skip to content
ComPDF
DemoFAQ
New Release

Open-Source PDF SDK & AI Document Processing

Get the full self-hosted SDK and AI document processing on GitHub. One-click deploy to quickly build your document workflows.

Convert PDF to Word

Overview

Converting PDF to Word is an operation that converts a PDF file into an editable Word file. By converting PDF to Word, you can edit, modify, insert, or delete text and images, and adjust layout and properties.

Sample

js
const options = {
  formulaToImage: true,
  transparentText: true
};

const result = sdk.startPDFToWord(
  inputFilePath,
  "",
  outputFilePath,
  options
);