Can you embed an HTML webpage in a PDF file?

前端 未结 5 1486
死守一世寂寞
死守一世寂寞 2020-12-03 18:27

A flash file can be embedded in a PDF document. Does anyone know if it is also possible to embed an HTML webpage?

Added:

  • I don\'t mean just a plain HTM
5条回答
  •  不知归路
    2020-12-03 19:29

    Created a NPM module that allows you to add custom HTML and CSS to PDF's.

    const pdf = require('add-html-to-pdf');
    
    var options = {
    input: 'sample.pdf',
    output: 'done.pdf',
    html: "
    This is awesome!
    ", useDocker: true } pdf.insertHTMLInPDF(options);

提交回复
热议问题