vote up 5 vote down star

Is it possible to create a gradient fill in a PDF using ReportLab (python)?

flag

52% accept rate

1 Answer

vote up 1 vote down

Use setFillColorRBG:

c.setFillColorRGB(0,0,0) # black fill
c.rect(200, 278, 121, 12, stroke=0, fill=1)
c.setFont(Helvetica_Bold_Oblique, 10)
c.setStrokeColorRGB(1,1,1) # white text
c.setFillColorRGB(1,1,1) # white text
c.drawString(202, 280, 'DUE FROM PATIENT')
c.restoreState()
link|flag
That looks like it does a solid fill of black. How would you do a gradient fill, for instance from blue to red, left-to-right? – Adam Tegen Jan 19 at 22:41

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.