使用puppeteer配置PDF页面宽度

时间:2019-12-24 05:34:57

标签: javascript node.js puppeteer

我正在尝试使用操纵up来生成pdf,但是生成的pdf的宽度很大。我想用pdf格式显示一页中的所有内容,并且宽度必须为4.8cm,其中页面高度可以是其内容具有的任何长度。

我将配置添加到pdf

{
  path            : filePath,
  printBackground : true,
  width           : '4.8cm'
}

在页面上,我向视口添加了配置

{
  width             : 136,
  height            : 842,
  deviceScaleFactor : 1
}

但是最终结果没有改变

1 个答案:

答案 0 :(得分:0)

尝试此代码,如果可以正常工作,请选择正确的答案。

我在page.pdf方法内设置了缩放选项,以将原始打印的PDF缩放为缩放后的版本。因此,这使得整页仅适合一页。

const puppeteer = require('puppeteer')

const pageURL = 'https://stackoverflow.com/questions/59464250/configure-pdf-page-width-using-puppeteer'

const optionsPDF = {
    path: 'print.pdf',
    printBackground: true,
    width: '4.8cm',
    scale: 1,
    preferCSSPageSize: false
}

;(async () => {
    const browser = await puppeteer.launch({
        headless: true,
        devtools: false,
        defaultViewport: {
            width             : 136,
            height            : 842,
            deviceScaleFactor : 1
        }
    })
    const [page] = await browser.pages()
    await page.emulateMedia('screen')

    await page.goto( pageURL, { waitUntil: 'networkidle0', timeout: 0 })

    const height_weight_ratio = await page.evaluate( () => window.innerHeight / window.innerWidth)
    const height = parseInt(optionsPDF.width) * height_weight_ratio
    optionsPDF.scale = 1/height_weight_ratio

    console.log('Printing PDF...')
    await page.pdf(optionsPDF)

    await browser.close()

})()