@florpor/pdf-table-extractor
v1.0.6
Published
Extract tables from PDF file
Readme
pdf-table-extractor
Extract tables from PDF
This package is based on ronnywang's pdf-table-extractor with just a few fixes.
Install
$ npm install --save @florpor/pdf-table-extractorAPI
method: pdfTableExtractor
const pdfTableExtractor = require('@florpor/pdf-table-extractor');
pdfTableExtractor('my_file.pdf').then(res => {
console.log(JSON.stringify(res));
});pdfTableExtractor(filePath, options)
filePath<[string]> the path to a pdf fileoptions<[Object]>maxEdgesPerPage<?[number]> maximum number of edges to process per page. if defined and number of identified edges surpasses the setting tables will not be processes for the current page.progressFunc<?[function(Object)]> callback to call after each page is processes with the current result object.
- returns: <[Promise]<[Object]>>
CLI
To use the simple CLI clone this repo and run:
$ npm install
$ node parse-cmd.js samples/pta_10229_131308_94274.pdfLicense
BSD License
