I'm using Vue.js and trying to convert PDF to PNG (or another image format) inside browser.
Right now I'm able to read PDF from URL with PDF.js and Vue.js component pdfvuer like this:
var self = this;
self.pdfdata = pdfvuer.createLoadingTask(
"https://any-pdf-link"
);
self.pdfdata.then(pdf => {
console.log(pdf.numPages)
})
What should I do next to convert it to image?