我无法将本地存储的图像渲染为使用Puppeteer生成的pdf,但是我为其指定了网址的外部图像。
特别是,在下面的示例代码中,渲染 test_html1 中的页面有效,而呈现 test_html2 则不起作用。
(async () => {
const browser = await puppeteer.launch({ args: ['--no-sandbox'] });
const page = await browser.newPage();
const test_html1 = `<html><h3>Hello world!</h3><img src="https://upload.wikimedia.org/wikipedia/commons/thumb/2/2f/Google_2015_logo.svg/1024px-Google_2015_logo.svg.png"></html>`;
// const test_html2 = `<html><h3>Hello world!</h3><img src="file:///home/cristina/Documents/logo.jpg"></html>`;
await page.goto(`data:text/html,${test_html}`, { waitUntil: 'networkidle0' });
await page.pdf({ path: `${this.outputPath}/test-puppeteer.pdf`,
format: 'A4', landscape: !data.isPortrait,
margin: { top: '0.5cm', right: '1cm', bottom: '0.8cm', left: '1cm' }, printBackground: true });
await browser.close();
})();
test_html1 的结果:
test_html2 的结果:
我的问题:
答案 0 :(得分:0)
解决了Puppeteer GitHub:https://github.com/GoogleChrome/puppeteer/issues/1643
基本上,它不起作用,因为作为针对恶意网站的安全措施,对本地图像的访问被阻止。