i m using Python 3.3,and i have installed(just excute the downloaded file .exe,no need any setting?) aspell PIL from below link,unfortunately i import PIL are error unresolved PIL. why?
http://www.lfd.uci.edu/~gohlke/pythonlibs/
import PIL
from PIL import Image
from PIL import ImageDraw
from PIL import ImageFont
font = ImageFont.truetype("C:/arial.ttf",25)
img=Image.new("RGBA", (200,200),(120,20,20))
draw = ImageDraw.Draw(img)
draw.text((0, 0),"This is a test",(255,255,0),font=font)
draw = ImageDraw.Draw(img)
draw = ImageDraw.Draw(img)
img.save("a_test.png")
or have any ideas without using PIL to draw the text on a image?