gpt4 book ai didi

Python ReportLab 设置背景色

转载 作者:行者123 更新时间:2023-12-02 00:49:10 26 4
gpt4 key购买 nike

我快速浏览了一下网络,但未能找到一种在 Python 中使用 ReportLab 生成 PDF 时设置背景颜色的方法。如何设置背景颜色?

最佳答案

不要使用复杂的方法,而是使用这个简单的技巧:

 import reportlab

from reportlab.pdfgen import canvas
from reportlab.lib.units import inch
from reportlab.lib.pagesizes import letter
from reportlab.lib.pagesizes import A4
from reportlab.lib.units import inch
from reportlab.lib.units import cm

def background(c):
c.setFillColorRGB(1,0,0)
c.rect(5,5,652,792,fill=1)


c=canvas.Canvas("Background",pagesize=letter)
c.setTitle("Background")
background(c)
c.showPage()
c.save()

只需绘制一个与pdf页面坐标相同的矩形,并填充选择的颜色即可。

关于Python ReportLab 设置背景色,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41373368/

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