ImageDraw2
index
/Library/Python/2.7/site-packages/PIL/ImageDraw2.py

# The Python Imaging Library
# $Id$
#
# WCK-style drawing interface operations
#
# History:
# 2003-12-07 fl   created
# 2005-05-15 fl   updated; added to PIL as ImageDraw2
# 2005-05-15 fl   added text support
# 2005-05-20 fl   added arc/chord/pieslice support
#
# Copyright (c) 2003-2005 by Secret Labs AB
# Copyright (c) 2003-2005 by Fredrik Lundh
#
# See the README file for information on usage and redistribution.
#

 
Modules
       
Image
ImageColor
ImageDraw
ImageFont
ImagePath

 
Classes
       
Brush
Draw
Font
Pen

 
class Brush
     Methods defined here:
__init__(self, color, opacity=255)

 
class Draw
     Methods defined here:
__init__(self, image, size=None, color=None)
arc(self, xy, start, end, *options)
chord(self, xy, start, end, *options)
ellipse(self, xy, *options)
flush(self)
line(self, xy, *options)
pieslice(self, xy, start, end, *options)
polygon(self, xy, *options)
rectangle(self, xy, *options)
render(self, op, xy, pen, brush=None)
settransform(self, (xoffset, yoffset))
symbol(self, xy, symbol, *options)
text(self, xy, text, font)
textsize(self, text, font)

 
class Font
     Methods defined here:
__init__(self, color, file, size=12)

 
class Pen
     Methods defined here:
__init__(self, color, width=1, opacity=255)