您好,登錄后才能下訂單哦!
這篇文章將為大家詳細講解有關使用python怎么生成一個圖形驗證碼,文章內容質量較高,因此小編分享給大家做個參考,希望大家閱讀完這篇文章后對相關知識有一定的了解。
主要用到的庫--PIL圖像處理庫,簡單的思路,我們需要隨機的顏色,隨機的數字或字母,隨機的線條、點作為干擾元素 拼湊成一張圖片。
生成隨機顏色,返回的是rgb三色。
def getRandomColor(): r = random.randint(0, 255) g = random.randint(0, 255) b = random.randint(0, 255) return (r, g, b)
從數字、大小寫字母里生成隨機字符。
def getRandomChar(): random_num = str(random.randint(0, 9)) random_lower = chr(random.randint(97, 122)) # 小寫字母a~z random_upper = chr(random.randint(65, 90)) # 大寫字母A~Z random_char = random.choice([random_num, random_lower, random_upper]) return random_char
圖片操作,生成一張隨機背景色的圖片,隨機生成5種字符+5種顏色,在圖片上描繪字,由于默認的字體很小,還需要對字進行處理,不同系統下的字體文件存放位置不一樣,這里我是把window下的 arial.ttf 字體復制到了當前文件夾下直接使用的。
# 圖片寬高 width = 160 height = 50 def createImg(): bg_color = getRandomColor() # 創建一張隨機背景色的圖片 img = Image.new(mode="RGB", size=(width, height), color=bg_color) # 獲取圖片畫筆,用于描繪字 draw = ImageDraw.Draw(img) # 修改字體 font = ImageFont.truetype(font="arial.ttf", size=36) for i in range(5): # 隨機生成5種字符+5種顏色 random_txt = getRandomChar() txt_color = getRandomColor() # 避免文字顏色和背景色一致重合 while txt_color == bg_color: txt_color = getRandomColor() # 根據坐標填充文字 draw.text((10 + 30 * i, 3), text=random_txt, fill=txt_color, font=font) # 打開圖片操作,并保存在當前文件夾下 with open("test.png", "wb") as f: img.save(f, format="png")
這個時候可以看到文件夾下面的圖片
這里是張很清晰的圖片,為了有干擾元素,這里還需要在圖片加入些線條、點作為干擾點。
隨機畫線,在圖片寬高范圍內隨機生成2個坐標點,并通過隨機顏色產生線條。
def drawLine(draw): for i in range(5): x1 = random.randint(0, width) x2 = random.randint(0, width) y1 = random.randint(0, height) y2 = random.randint(0, height) draw.line((x1, y1, x2, y2), fill=getRandomColor())
隨機畫點,隨機生成橫縱坐標點。
def drawPoint(draw): for i in range(50): x = random.randint(0, width) y = random.randint(0, height) draw.point((x,y), fill=getRandomColor())
生成方法
def createImg(): bg_color = getRandomColor() # 創建一張隨機背景色的圖片 img = Image.new(mode="RGB", size=(width, height), color=bg_color) # 獲取圖片畫筆,用于描繪字 draw = ImageDraw.Draw(img) # 修改字體 font = ImageFont.truetype(font="arial.ttf", size=36) for i in range(5): # 隨機生成5種字符+5種顏色 random_txt = getRandomChar() txt_color = getRandomColor() # 避免文字顏色和背景色一致重合 while txt_color == bg_color: txt_color = getRandomColor() # 根據坐標填充文字 draw.text((10 + 30 * i, 3), text=random_txt, fill=txt_color, font=font) # 畫干擾線點 drawLine(draw) drawPoint(draw) # 打開圖片操作,并保存在當前文件夾下 with open("test.png", "wb") as f: img.save(f, format="png")
關于使用python怎么生成一個圖形驗證碼就分享到這里了,希望以上內容可以對大家有一定的幫助,可以學到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。