diff --git a/PIL/ImageDraw.py b/PIL/ImageDraw.py index 29f32df5c..5b5588426 100644 --- a/PIL/ImageDraw.py +++ b/PIL/ImageDraw.py @@ -455,15 +455,6 @@ class ImageDraw(object): return xpos + origin[0], ypos + origin[0] -## -# A simple 2D drawing interface for PIL images. -# -# @param im The image to draw in. -# @param mode Optional mode to use for color values. For RGB -# images, this argument can be RGB or RGBA (to blend the -# drawing into the image). For all other modes, this argument -# must be the same as the image mode. If omitted, the mode -# defaults to the mode of the image. def Draw(im, mode=None): """ A simple 2D drawing interface for PIL images.