-
Notifications
You must be signed in to change notification settings - Fork 8
Open
Labels
Description
const pdf = require('pdf-thumbnail');
const pdfBuffer = require('fs').readFileSync('/home/ragini/Desktop/front page.pdf');
pdf(
pdfBuffer, /Buffer or stream of the pdf/
{
crop: {
width: 200,
height: 400,
x: 0,
y: 0
}
})
.then(data /Stream of the image/ => data.pipe(fs.createWriteStream(join('/home/ragini/Desktop', "preview", "previewBuffer.jpg"))))
// ...
please give me solution.
minhna and josethz00