pyppeteer生成空的pdf

时间:2019-06-19 17:38:54

标签: python pyppeteer

我正在使用pyppeteer从pdf标记生成html。但是我生成了空的pdf文件。你知道为什么吗?

async def main():

    with open('index.html', 'r', encoding='utf-8') as f:
        file = f.read()
        browser = await launch()
        page = await browser.newPage()
        await page.setContent(file)
        await page.pdf({'path': 'example.pdf',  'printBackground': True})
        await browser.close()

asyncio.get_event_loop().run_until_complete(main())

0 个答案:

没有答案