验证码在我们的世界中可以保护我们的信息安全的一个保障之一 这就是生成验证码的代码 # 导报 from captcha.image import ImageCaptcha #验证码的包 from PIL import Image import random import time #系统模块 import os #定义随机方法 def random_captcha(): #做一个容器 captcha_text = [] for i in range(4): #定义验证码字符 指定随机 c…
转载自http://www.cnblogs.com/descusr/p/3225874.html 全部程序写完之后,验证码图片不显示,点击图片地址会提演示样例如以下错误,而且在linux下的纠正办法 用pil产生验证码出现:ImportError: The _imagingft C module is not installed 这个是因为PIL没有编译freetype导致的 查看 lib/python2.7/site-packages/PIL/ 看看 _imagingft.so 是否存在(至关…