I started getting acquainted with the ImageDraw class (Object). <http://effbot.org/imagingbook/imagedraw.htm>  My question here is are there more detailed explanations somewhere for the options? Here's a description for line from that source:
===============
line

draw.line(xy, options)  <============= OPTIONS

Draws a line between the coordinates in the xy list.

The coordinate list can be any sequence object containing either 2-tuples [ (x, y), … ] or numeric values [ x, y, … ]. It should contain at least two coordinates.

The fill option gives the colour to use for the line.
================================

It gives no idea what the choices are for options in the argument list.

This contrasts with the more detailed descriptions in the document at New Mexico Tech, which goes into considerable detail on options for the Tkinter class. See page 4 of  <http://infohost.nmt.edu/tcc/help/pubs/tkinter.pdf> by John Shipman. For Tkinter, options are fully detailed. Is there something similar for ImageDraw?
-- 
           Wayne Watson (Watson Adventures, Prop., Nevada City, CA)

             (121.015 Deg. W, 39.262 Deg. N) GMT-8 hr std. time)
              Obz Site:  39° 15' 7" N, 121° 2' 32" W, 2700 feet
            
              "I know that this defies the law of gravity, but 
               you see, I never studied law." -- Bugs Bunny
             
                    Web Page: <www.speckledwithstars.net/>

_______________________________________________
Tutor maillist  -  Tutor@python.org
http://mail.python.org/mailman/listinfo/tutor

Reply via email to