如何使用reportlab pdfgen设置文本对象的文本颜色



我最近正在寻找设置textobject的文本颜色所需的函数。textobject是用reportlab/pdfgen处理的一种特殊方法。文档中有一些信息,但是非常不清楚。

开始代码:

textobject = canvas.beginText()
textobject.textOut("Example Text")
canvas.drawText(textobject)

使用setFillColorRGB()函数更改颜色。该函数接受3个值(红色,绿色,蓝色),并期望值为0-1。

的例子:

textobject = canvas.beginText()
textobject.setFillColorRGB(0.5, 0.5, 0.5) #grey text
textobject.textOut("Example Text")
canvas.drawText(textobject)

相关内容

  • 没有找到相关文章

最新更新