We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I am trying to put images on the page header, but it didn't work.
It works if I don't put id="pageHeader" on my div tag. But it will show it only in the first page, I need it in all the header pages.
html code
<div class="pageHeader" id="pageHeader"> <div> <img src="../img/first.svg" alt=""> <img src="../img/gpo.png" alt=""> </div> </div>
This is my Js code
html = fs.readFileSync("./pdf2.html", "utf-8"); options = {"format": 'Letter', "localUrlAccess":true, "base": 'file:///' + __dirname + '/img/', "footer":{ "height": "25px" } } pdf.create(html, options).toFile("./example.pdf", function ( err, res) { if(err) return console.log(err) console.log(res); })
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I am trying to put images on the page header, but it didn't work.
It works if I don't put id="pageHeader" on my div tag. But it will show it only in the first page, I need it in all the header pages.
html code
This is my Js code
The text was updated successfully, but these errors were encountered: