使用报告实验室的背景图像?
如何使用reportlab 将背景图像添加到pdf 页面?
how can i add background image to pdf pages using reportlab?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
如何使用reportlab 将背景图像添加到pdf 页面?
how can i add background image to pdf pages using reportlab?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(1)
假设您安装了 PIL(Python 图像库),您可以使用
canvas.drawImage
。要制作背景图像,只需在页面上的任何其他内容之前调用drawImage
,它将首先绘制:然后其他所有内容都将绘制在它上面。您可以在ReportLab 手册的第15页找到有关此功能的更多信息。
Assuming you have PIL (Python Imaging Library) installed, you can use
canvas.drawImage
. To make a background image, just calldrawImage
before anything else on the page and it will be drawn first: then everything else will draw on top of it.You can find out more about this function on page 15 of the ReportLab Manual.