gpt4 book ai didi

pdf-generation - 用于 PDF 渲染的 Puppeteer 自定义页眉页脚

转载 作者:行者123 更新时间:2023-12-04 04:27:16 24 4
gpt4 key购买 nike

我正在渲染网站的 PDF。我希望第一页的页眉和页脚不同,其余页面的页眉和页脚也不同。有没有办法做到这一点?

const puppeteer = require('puppeteer');

(async() => {
var t = Date.now();
console.log('Current time ' + t + ' msec');

const browser = await puppeteer.launch({executablePath: 'C:\\Program Files (x86)\\Google\\Chrome\\Application\\chrome.exe', ignoreHTTPSErrors:true, headless:true, devtools:false});
const page = await browser.newPage();
await page.setViewport({width: 1920, height: 1080});

await page.setExtraHTTPHeaders({'Report-Print-Preview-Mode':'true'});
await page.goto('https://localhost', {waitUntil: 'networkidle2'});
await page.type('#username', 'scott');
await page.type('#password', 'tiger');
await page.click('[id="login_button"]');

await page.waitForSelector('[id="new_page_table_id"]');
await page.on('console', msg => console.log('PAGE LOG:', msg.text()));

// page.pdf() is currently supported only in headless mode.
// @see https://bugs.chromium.org/p/chromium/issues/detail?id=753118

await page.pdf({
path: 'report.pdf',
displayHeaderFooter: true,
headerTemplate: '<span style="font-size: 30px; width: 50px; height: 50px; background-color: black; color:black; margin: 20px;">Header</span>',
footerTemplate: '<span style="font-size: 30px; width: 50px; height: 50px; background-color: black; color:black; margin: 20px;">Footer</span>',
printBackground: true,
format: 'A4',
margin:{top:'2cm',right:'2cm',bottom:'2cm',left:'2cm'}
});

await browser.close();

t = Date.now() - t;
console.log('Execution time ' + t + ' msec');
})();

我怎样才能实现它?请帮忙。

最佳答案

您请求的功能没有“开箱即用”的 puppeteer 实现。

同时,在“Ability to prevent header/footer on certain pages”中描述了几种解决方法。第一个建议是使用不同的范围和使用不同的页眉/页脚组合进行多次转换;将结果缓冲区与类似 https://github.com/astefanutti/decktape 的内容合并后.另一个使用 @page:first 的hacky 解决方案CSS样式。

关于pdf-generation - 用于 PDF 渲染的 Puppeteer 自定义页眉页脚,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52404672/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com