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()
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 TegenJan 19 at 22:41
Stack Overflow is a collaboratively edited question and answer site for programmers – regardless of platform or language. It's 100% free, no registration required.