Add image in header using html-pdf node module

后端 未结 6 1573
深忆病人
深忆病人 2021-02-13 23:28

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:34

    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);

提交回复
热议问题