Some test text!

Search
Hamburger Icon

Nodejs / Guides / Web/HTML to PDF

Convert HTML to PDF in Node.js

HTML2PDF Module is an optional add-on utility which can be used with Apryse SDK to convert an HTML file to a PDF document without any external third party dependencies.

You can find more details about how to install HTML2PDF Module here:

Apryse HTML2PDF Module

Requires the HTML2PDF module add-on.
async function main() {
  // Start with a PDFDoc (the conversion destination)
  const doc = await PDFNet.PDFDoc.create();
  const converter = await PDFNet.HTML2PDF.create();

  // add from HTML String data
  converter.insertFromHtmlString(htmlString);

  // add from a web page location
  converter.insertFromUrl(webPageLocation);

  // apply conversion
  await converter.convert(doc);
}
PDFNet.runWithCleanup(main);

Convert HTML to PDF
Full sample code for directly converting HTML pages to PDF by using 'pdftron.PDF.HTML2PDF'. The HTML2PDF converter supports HTML conversion from a string or URL and offers many options to control page size and formatting.

Get the answers you need: Chat with us