Fix a couple of example imports

This commit is contained in:
Stephen Johnson 2013-10-12 13:53:31 -07:00
parent f2be739fdf
commit b98c3f05cd
2 changed files with 2 additions and 2 deletions

View File

@ -18,7 +18,7 @@ Example: Draw a gray cross over an image
.. code-block:: python
import Image, ImageDraw
from PIL import Image, ImageDraw
im = Image.open("lena.pgm")

View File

@ -15,7 +15,7 @@ Vary the Sharpness of an Image
.. code-block:: python
import ImageEnhance
from PIL import ImageEnhance
enhancer = ImageEnhance.Sharpness(image)