Python生成验证码
Posted junlong
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python生成验证码相关的知识,希望对你有一定的参考价值。
1 """ Python生成静态验证码 """ 2 from captcha.image import ImageCaptcha 3 import numpy as np 4 import matplotlib.pyplot as plt 5 from PIL import Image 6 import random 7 8 # 定义验证码中的字符 9 number = [‘0‘, ‘1‘, ‘2‘, ‘3‘, ‘4‘, ‘5‘, ‘6‘, ‘7‘, ‘8‘, ‘9‘] 10 alphabet = [‘a‘, ‘b‘, ‘c‘, ‘d‘, ‘e‘, ‘f‘, ‘g‘, ‘h‘, ‘i‘, ‘j‘, ‘k‘, ‘l‘, ‘m‘, ‘n‘, ‘o‘, ‘p‘, ‘q‘, ‘r‘, ‘s‘, ‘t‘, ‘u‘, ‘v‘, ‘w‘, ‘x‘, ‘y‘, ‘z‘] 11 ALPHABET = [‘A‘, ‘B‘, ‘C‘, ‘D‘, ‘E‘, ‘F‘, ‘G‘, ‘H‘, ‘I‘, ‘J‘, ‘K‘, ‘L‘, ‘M‘, ‘N‘, ‘O‘, ‘P‘, ‘Q‘, ‘R‘, ‘S‘, ‘T‘, ‘U‘, ‘V‘, ‘W‘, ‘X‘, ‘Y‘, ‘Z‘] 12 13 # 随机生成验证码文本,验证码长度4字符 14 def random_captcha_text(char_set = number + alphabet + ALPHABET, captcha_size=4): 15 captcha_text = [] 16 for i in range(captcha_size): 17 c = random.choice(char_set) 18 captcha_text.append(c) 19 return captcha_text 20 21 # 生成字符对应的验证码 22 def gen_captcha_text_and_image(): 23 image = ImageCaptcha() 24 captcha_text = random_captcha_text() 25 captcha_text = ‘‘.join(captcha_text) 26 captcha = image.generate(captcha_text) 27 captcha_image = Image.open(captcha) 28 captcha_image = np.array(captcha_image) 29 return captcha_text, captcha_image 30 31 # 测试 32 if __name__ == ‘__main__‘: 33 text, image = gen_captcha_text_and_image() 34 f = plt.figure() 35 ax = f.add_subplot(111) # 参数111:将画布分割成1行2列,图像画在第1块。 36 ax.text(0.1, 0.9, text, ha=‘center‘, va=‘center‘, transform=ax.transAxes) # ha:水平分布情况 va:垂直分布情况 transform:指定text在图片中的相对位置。 37 plt.imshow(image) 38 39 plt.show()
以上是关于Python生成验证码的主要内容,如果未能解决你的问题,请参考以下文章