pdftotext-stdin
v0.2.0
Published
Use pdftotext stdin without specifying an output file.
Downloads
20
Readme
pdftotext-stdin
Beta / WIP: Make pdftotext read/write to streams.
Dependencies
pdftotext 0.62.0
Usage
npm install --save pdftotext-stdin
const extractor = require('pdftotext-stdin');
const rs = fs.createReadStream('my.pdf');
extractor.extractTextFromPdfStream(rs).then(text => {/*...*/});
Acknowledgements
- poppler for this great tool.
- pdf-text-extract for the inspiration