python随机图片验证码的生成
2018-06-17 23:35:44来源:未知 阅读 ()
Python生成随机验证码,需要使用PIL模块.
安装:
1
|
pip3 install pillow |
基本使用
1. 创建图片
1
2
3
4
5
6
7
8
9
|
from PIL import Image img = Image.new(mode = 'RGB' , size = ( 120 , 30 ), color = ( 255 , 255 , 255 )) # 在图片查看器中打开 # img.show() # 保存在本地 with open ( 'code.png' , 'wb' ) as f: img.save(f, format = 'png' ) |
2. 创建画笔,用于在图片上画任意内容
1
2
|
img = Image.new(mode = 'RGB' , size = ( 120 , 30 ), color = ( 255 , 255 , 255 )) draw = ImageDraw.Draw(img, mode = 'RGB' ) |
3. 画点
1
2
3
4
5
6
|
img = Image.new(mode = 'RGB' , size = ( 120 , 30 ), color = ( 255 , 255 , 255 )) draw = ImageDraw.Draw(img, mode = 'RGB' ) # 第一个参数:表示坐标 # 第二个参数:表示颜色 draw.point([ 100 , 100 ], fill = "red" ) draw.point([ 300 , 300 ], fill = ( 255 , 255 , 255 )) |
4. 画线
1
2
3
4
5
6
|
img = Image.new(mode = 'RGB' , size = ( 120 , 30 ), color = ( 255 , 255 , 255 )) draw = ImageDraw.Draw(img, mode = 'RGB' ) # 第一个参数:表示起始坐标和结束坐标 # 第二个参数:表示颜色 draw.line(( 100 , 100 , 100 , 300 ), fill = 'red' ) draw.line(( 100 , 100 , 300 , 100 ), fill = ( 255 , 255 , 255 )) |
5. 画圆
1
2
3
4
5
6
7
|
img = Image.new(mode = 'RGB' , size = ( 120 , 30 ), color = ( 255 , 255 , 255 )) draw = ImageDraw.Draw(img, mode = 'RGB' ) # 第一个参数:表示起始坐标和结束坐标(圆要画在其中间) # 第二个参数:表示开始角度 # 第三个参数:表示结束角度 # 第四个参数:表示颜色 draw.arc(( 100 , 100 , 300 , 300 ), 0 , 90 ,fill = "red" ) |
6. 写文本
1
2
3
4
5
6
|
img = Image.new(mode = 'RGB' , size = ( 120 , 30 ), color = ( 255 , 255 , 255 )) draw = ImageDraw.Draw(img, mode = 'RGB' ) # 第一个参数:表示起始坐标 # 第二个参数:表示写入内容 # 第三个参数:表示颜色 draw.text([ 0 , 0 ], 'python' , "red" ) |
7. 特殊字体文字
1
2
3
4
5
6
7
8
9
10
|
img = Image.new(mode = 'RGB' , size = ( 120 , 30 ), color = ( 255 , 255 , 255 )) draw = ImageDraw.Draw(img, mode = 'RGB' ) # 第一个参数:表示字体文件路径 # 第二个参数:表示字体大小 font = ImageFont.truetype( "kumo.ttf" , 28 ) # 第一个参数:表示起始坐标 # 第二个参数:表示写入内容 # 第三个参数:表示颜色 # 第四个参数:表示颜色 draw.text([ 0 , 0 ], 'python' , "red" , font = font) |
图片验证码的生成
import random from io import BytesIO from PIL import Image,ImageDraw,ImageFont def valid_color(): color=(random.randint(0, 255), random.randint(0, 255), random.randint(0, 255)) return color def get_valid_code(request): '''获取随机验证码图片''' img=Image.new(mode="RGB",size=(170,40),color=valid_color())#创建一张背景图片随机的图片 draw=ImageDraw.Draw(img,mode="RGB")#给图片创建一个画笔 font=ImageFont.truetype(font="blog/static/font/kumo.ttf",size=25)#创建字体 valid_list=[] for i in range(5): random_num = str(random.randint(0, 9)) #产生随机的数字 random_lower_letter = chr(random.randint(65, 90))#产生随机的小写字母 random_upper_letter = chr(random.randint(97, 122))#产生随机的大写字母 random_str=random.choice([random_num,random_lower_letter,random_upper_letter])#从以上的随机字符中随机出一个随机字符 draw.text(xy=[30+i*24,10],text=random_str,fill=valid_color(),font=font)#在背景图片中写入随机字符 valid_list.append(random_str)#将随机字符串保存到列表中 for i in range(40): '''在图片中画如随机的点''' draw.point([random.randint(0,170),random.randint(0,40)],fill=valid_color()) for i in range(5): '''在图片中画如随机的线''' draw.line((random.randint(0, 170), random.randint(0, 40),random.randint(0,170),random.randint(0,40)), fill=valid_color()) f=BytesIO() #在内存中创建一个文件对象 img.save(f,"png") #将随机字符串的图片保存到文件中 data=f.getvalue() #获取随机字符串图片的二进制 valid_str=''.join(valid_list) request.session["valid_str"]=valid_str#将图片中产生的随机字符串保存到session中 return HttpResponse(data)
标签:
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有
上一篇:Python使用虚拟环境
- python3基础之“术语表(2)” 2019-08-13
- python3 之 字符串编码小结(Unicode、utf-8、gbk、gb2312等 2019-08-13
- Python3安装impala 2019-08-13
- 小白如何入门 Python 爬虫? 2019-08-13
- python_字符串方法 2019-08-13
IDC资讯: 主机资讯 注册资讯 托管资讯 vps资讯 网站建设
网站运营: 建站经验 策划盈利 搜索优化 网站推广 免费资源
网络编程: Asp.Net编程 Asp编程 Php编程 Xml编程 Access Mssql Mysql 其它
服务器技术: Web服务器 Ftp服务器 Mail服务器 Dns服务器 安全防护
软件技巧: 其它软件 Word Excel Powerpoint Ghost Vista QQ空间 QQ FlashGet 迅雷
网页制作: FrontPages Dreamweaver Javascript css photoshop fireworks Flash