Add image in header using html-pdf node module

后端 未结 6 1098
轻奢々
轻奢々 2021-02-13 23:10

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

6条回答
  •  长发绾君心
    2021-02-13 23:44

    Created a simple NPM module for this purpose that can add arbitrary HTML and CSS to an existing PDF.

    const pdf = require('add-html-to-pdf');
    
    var options = {
      input: 'sample.pdf',
      output: 'done.pdf',
      html: "
    Author: Marc Bachmann
    ", } pdf.insertHTMLInPDF(options);

提交回复
热议问题