跟着网上教程写的代码,检查了3遍代码应该是没有问题,但是验证码不显示
def verify(request):
import random
from PIL import Image, ImageDraw, ImageFont
bgcolor = (242,164,247)
width = 100
height = 25
im = Image.new('RGB', (width, height), bgcolor)
draw = ImageDraw.Draw(im)
for i in range(0, 100):
xy = (random.randrange(0, width), random.randrange(0, height))
fill = (random.randrange(0, 255), 255, random.randrange(0, 255))
draw.point(xy, fill=fill)
str1 = '0123456789'
rand_str = ''
for i in range(0, 4):
rand_str += str1[random.randrange(0, len(str1))]
font = ImageFont.truetype('static/arial.ttf', 21)
fontcolor = (255, random.randrange(0, 255), random.randrange(0, 255))
draw.text((5, -3), rand_str[0], font=font, fill=fontcolor)
draw.text((25, -3), rand_str[1], font=font, fill=fontcolor)
draw.text((50, -3), rand_str[2], font=font, fill=fontcolor)
draw.text((75, -3), rand_str[3], font=font, fill=fontcolor)
del draw
request.session['verifycode'] = rand_str
"""
python2的为
# 内存文件操作
import cStringIO
buf = cStringIO.StringIO()
"""
import io
buf = io.BytesIO()
im.save(buf, 'png')
个人猜应该是电脑少装了内容,但具体缺了啥不清楚
