node-html-pdf icon indicating copy to clipboard operation
node-html-pdf copied to clipboard

This repo isn't maintained anymore as phantomjs got dreprecated a long time ago. Please migrate to headless chrome/puppeteer.

Results 132 node-html-pdf issues
Sort by recently updated
recently updated
newest added

I'm using Persian fonts like IRANSANS. can I import my custom font ?

Using below logic html, body{ background-color: #1f1463; font-family: 'Nunito Sans', sans-serif; color: #fff; padding: 0px; margin: 0px; -webkit-print-color-adjust: exact; } ![Screenshot 2022-08-04 at 12 28 03 PM](https://user-images.githubusercontent.com/42743821/182783658-db2860d9-57b6-4260-b749-a036a5bc251f.png) Using following options...

Hello, it seens I can't get the bold text in html files passed to the pdf. I tried different ways to get my text bold but none of the attempts...

I've recently encountered a bug that is causing an error when I use a font awesome icon in my html that is being used to convert to pdf. I haven't...

I'm having somre troubles to create PDF file. ``` let html = " HELLO ! "; let OPTIONS = {phantomPath: './node_modules/phantomjs-prebuilt/lib/phantom/bin/phantomjs'}; pdf.create(html, OPTIONS).toFile('output.pdf', function (err, res) { if (err){ console.log(...

I already change the timeout to a hight number, but is doesn't work. I am using a Debian system with 16GB RAM.

Is there a way to make text selectable? Can some option be passed?

Hi everyone, I ran this function on the azure app service and got this error. function : const bufferPdf = async (html, options) => { try { return new Promise((resolve,...

Hi I have used some custom fonts to generate PDF. I have set the absolute path in the base url. But the problem is all fonts are rendering in italic...

Hello i try to build a bill generator i create a html content and i put it to this script ``import pdf from 'html-pdf'; function createPDF(html) { console.log('createPDF'); const options...