Skip to content

Instantly share code, notes, and snippets.

@tomiolah
Forked from antfu/html2pdf.js
Created May 2, 2022 07:16
Show Gist options
  • Save tomiolah/f2bd15aaec33eed453628c8066eed538 to your computer and use it in GitHub Desktop.
Save tomiolah/f2bd15aaec33eed453628c8066eed538 to your computer and use it in GitHub Desktop.
HTML to PDF
import puppeteer from 'puppeteer'
import fs from 'fs'
async function buildPDF(htmlString) {
const browser = await puppeteer.launch({ headless: true })
const page = await browser.newPage();
await page.setContent(htmlString, { waitUntil: 'networkidle0' })
const pdf = await page.pdf({
format: 'A4',
displayHeaderFooter: false,
printBackground: true,
// default in Chrome
margin: {
top: '0.4in',
bottom: '0.4in',
left: '0.4in',
right: '0.4in',
}
})
await browser.close()
fs.writeFileSync('/path/to/save', pdf)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment