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
);