简体   繁体   中英

Convert Pdf buffer to jpg image buffer ( NodeJS )

I have extracted a PDF attachment from email and i have the content of PDF file like : Buffer ff 34 54 ,I want to convert this buffer to jpg image buffer. So that i can convert the the PDF to jpg image. Is there a way to convert the buffer directly?

I have saved the pdf file then using some third party module, I have converted that to jpg. But for that I have to write and read files many times.

Maybe this could help. Just googled pdf to image and got this.

npm install pdf-image

var PDFImage = require("pdf-image").PDFImage;
var pdfImage = new PDFImage("/tmp/slide.pdf");
pdfImage.convertFile().then(function (imagePaths) {
// [ /tmp/slide-0.png, /tmp/slide-1.png ]

});

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM