资源简介
利用Python生成验证码图片
代码和字体文件压缩包
代码片段和文件信息
# 导入库文件
from PIL import ImageImageFontImageDrawImageFilter
import stringrandomos
# 方法:获得四个随机字母
def getRandomChar():
return [random.choice(string.ascii_letters)for _ in range(4)]
# 方法:获取随机颜色
def getRandomColor():
return (random.randint(30100)random.randint(30100)random.randint(30100))
# 主方法:获取验证码图片
def getCodePicture(fontPathoutPath):
# 图片宽高
width = 240
height = 60
# 创建空白画布
image = Image.new(‘RGB‘(widthheight)(180180180))
# 验证码字体
font = ImageFont.truetype(fontPath40)
# 画出画布,获取画布对象
draw = ImageDraw.Draw(image)
# 创建验证码对象
code = getRandomChar()
# 把验证码画到画布上
for x in range(4):
draw.text((60*x+100)code[x]font=fontfill=getRandomColor())
# 填充噪点
for _ in range(random.randint(15003000)):
draw.point((random.randint(0width)random.randint(0height))fill = getRandomColor())
# 模糊处理
image = image.filter(ImageFilter.BLUR)
# 保存
image.save(outPath+“\\“+““.join(code)+“.jpg“‘jpeg‘)
if __name__ == ‘__main__‘:
getCodePicture(“simsun.ttf“os.getcwd())
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 1217 2017-07-14 17:21 codepicture.py
文件 10499104 2012-05-14 11:30 simsun.ttf
- 上一篇:python实现淘宝爬虫
- 下一篇:计算机二级学习资料python
相关资源
- 计算机二级学习资料python
- python实现淘宝爬虫
- 图像处理-图片找不同Find the differenc
- 第二版中文 高清带书签Flask Web开发:
- 结巴分词、词性标注以及停用词过滤
- 基于深度学习Superpoint 的Python图像全景
- Python数据分析-pandas玩转Excel - 资料.
- python反编译工具Easy Python Decompiler
- Python性能分析与优化.pdf
- Python小说器
- numpy-1.13.1-cp27-none-win32.whl
- 机器学习对应的相关python代码SVM、C
- 中文文本聚类
- python 后台管理系统
- 声纹识别资料
- Introduction to time series.pdf + Deep Time Se
- OpenCV-Python中文教程
- 《廖雪峰Python2.7教程》高清完整PDF版
- Python标准库查询手册最新Python 3.3
- The Quick Python Book 3rd Edition.pdf
- Python学习思维导图
- OpenCV Python中文教程
- python for eclipse
- numpy-1.16.4.zip
- Python程序设计第3版- John M. Zelle 课件资
- Web Scraping with Python_Collecting Data from
- python TensorFlow 官方文档中文版
- Python3.6 中文文档.pdf
- 树莓派Python编程指南34705
- python项目源码
评论
共有 条评论