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 CSV

Overview

ComPDF Conversion SDK supports converting PDF documents to CSV (Comma-Separated Values). In the Node.js SDK, CSV output is controlled by Excel conversion options.

Sample

js
const options = {
  excelCsvFormat: true,
  autoCreateFolder: true
};

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