In continuation of my previous post Convert HTML to PDF in Node JS without headless browser, I will show you how can we can fetch the images from URL, convert them into base64 string, and populate them in the HTML that is then converted into PDF.
[Read More]
I'm open to new opportunities! For a full-time role, contract position, or freelance work, reach out at
talha@talhaawan.net or
LinkedIn.
Convert HTML to PDF in Nodejs
Without Puppeteer, phantomjs or any other headless browser.
To convert an HTML to PDF in the backend, you usually need a headless browser like Puppeteer or phantomjs. The downside of headless browsers is that they are resource intensive. If you need to convert an HTML in Nodejs, is there a way to do so without them? The answer is yes but with a caveat: The HTML should be relatively simple, and you will only have a few options to style the document.
[Read More]