Drawing and Displaying an Image with PIL

r rt8396 at gmail.com
Wed Jan 28 00:45:00 EST 2009


Change this line:
draw.line((0,0),(20,140), fill=128)

To This:
draw.line((0,0, 20,140), fill=128)

And you should be good to go. Like you said, if you need to combine 2
tuples you can do:
(1,2)+(3,4)



More information about the Python-list mailing list