您好,登錄后才能下訂單哦!
本篇內容主要講解“怎么用Python實現隨機生成圖片驗證碼”,感興趣的朋友不妨來看看。本文介紹的方法操作簡單快捷,實用性強。下面就讓小編來帶大家學習“怎么用Python實現隨機生成圖片驗證碼”吧!
導入模塊
import random from PIL import Image,ImageFont,ImageDraw
生成隨機驗證碼
def rndtxt(): txt_list = [] # 大寫字母 txt_list.extend([i for i in range(65,90)]) # 小寫字母 txt_list.extend([i for i in range(97,123)]) # 數字 txt_list.extend([i for i in range(48,57)]) return chr(txt_list[random.randint(0,len(txt_list)-1)])
作為待會生成的圖片背景色和字體色
def rndbgcolor(): # 背景顏色 return (random.randint(64,255),random.randint(64,255),random.randint(64,255)) def rndtxtcolor2(): # 字體顏色 return (random.randint(32,127),random.randint(32,127),random.randint(32,127))
進行生成打印驗證碼并以圖片的形式打開,不保存圖片文件,僅用于一時的驗證碼驗證
def code(): weight = 240 hight = 60 image = Image.new('RGB',(weight,hight),(255,255,255)) font = ImageFont.truetype('msyh.ttc',36) draw = ImageDraw.Draw(image) # 填充背景顏色 for x in range(weight): for y in range(hight): draw.point((x,y),fill=rndbgcolor()) # 生成隨機驗證碼 for T in range(4): rndtxt_2 = rndtxt() print(rndtxt_2) # 打印驗證碼的值 draw.text((60 * T + 10,10),rndtxt_2,font=font,fill=rndtxtcolor2()) image.show()
完整代碼:
#!/usr/bin/env python3 import random from PIL import Image,ImageFont,ImageDraw def rndtxt(): txt_list = [] # 大寫字母 txt_list.extend([i for i in range(65,90)]) # 小寫字母 txt_list.extend([i for i in range(97,123)]) # 數字 txt_list.extend([i for i in range(48,57)]) return chr(txt_list[random.randint(0,len(txt_list)-1)]) def rndbgcolor(): # 背景顏色 return (random.randint(64,255),random.randint(64,255),random.randint(64,255)) def rndtxtcolor2(): # 字體顏色 return (random.randint(32,127),random.randint(32,127),random.randint(32,127)) def code(): weight = 240 hight = 60 image = Image.new('RGB',(weight,hight),(255,255,255)) font = ImageFont.truetype('msyh.ttc',36) draw = ImageDraw.Draw(image) # 填充背景顏色 for x in range(weight): for y in range(hight): draw.point((x,y),fill=rndbgcolor()) # 生成隨機驗證碼 for T in range(4): rndtxt_2 = rndtxt() print(rndtxt_2) # 打印驗證碼的值 draw.text((60 * T + 10,10),rndtxt_2,font=font,fill=rndtxtcolor2()) image.show() code()
到此,相信大家對“怎么用Python實現隨機生成圖片驗證碼”有了更深的了解,不妨來實際操作一番吧!這里是億速云網站,更多相關內容可以進入相關頻道進行查詢,關注我們,繼續學習!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。