I am using this to convert the html to PDF.The conversions are really good.But the problem is to add header and footer in the PDF pages.In the options if i add the header text i
It is possible to add the image in options header. 1.Load the image in html body with "display:none" style. 2.Then add the image in the options header By doing this the image is cached and can attach the image in header.
var options = {
"format": 'Letter',
"orientation": "portrait",
"header": {
"contents": "",
"height": "30mm"
},
"footer": {
"contents": footer
}
}
pdf.create("", options).toFile("sample.pdf", function(err, res) {
if (err) {
console.error(err);
callback();
}
});