electron-html-to
Version:
Convert html to html/image using electron
19 lines (15 loc) • 368 B
JavaScript
;
var pdfjs = require('pdfjs-dist/build/pdf');
module.exports = function parsePDF(pdfBuf, cb) {
var pdfData = undefined;
try {
pdfData = new Uint8Array(pdfBuf);
pdfjs.getDocument(pdfData).then(function (doc) {
cb(null, doc);
})['catch'](function (err) {
cb(err);
});
} catch (uncaughtErr) {
cb(uncaughtErr);
}
};