最新文章专题视频专题问答1问答10问答100问答1000问答2000关键字专题1关键字专题50关键字专题500关键字专题1500TAG最新视频文章推荐1 推荐3 推荐5 推荐7 推荐9 推荐11 推荐13 推荐15 推荐17 推荐19 推荐21 推荐23 推荐25 推荐27 推荐29 推荐31 推荐33 推荐35 推荐37视频文章20视频文章30视频文章40视频文章50视频文章60 视频文章70视频文章80视频文章90视频文章100视频文章120视频文章140 视频2关键字专题关键字专题tag2tag3文章专题文章专题2文章索引1文章索引2文章索引3文章索引4文章索引5123456789101112131415文章专题3
当前位置: 首页 - 科技 - 知识百科 - 正文

Python随机生成中文验证码的实例代码

来源:动视网 责编:小采 时间:2020-11-27 14:39:05
文档

Python随机生成中文验证码的实例代码

Python随机生成中文验证码的实例代码:python代码 代码如下: # -*- coding: utf-8 -*- import Image,ImageDraw,ImageFont import random import math, string class RandomChar(): 用于随机生成汉字 @staticmethod def Unic
推荐度:
导读Python随机生成中文验证码的实例代码:python代码 代码如下: # -*- coding: utf-8 -*- import Image,ImageDraw,ImageFont import random import math, string class RandomChar(): 用于随机生成汉字 @staticmethod def Unic


python代码

代码如下:


# -*- coding: utf-8 -*-

import Image,ImageDraw,ImageFont

import random

import math, string

class RandomChar():

"""用于随机生成汉字"""

@staticmethod

def Unicode():

val = random.randint(0x4E00, 0x9FBF)

return unichr(val)

@staticmethod

def GB2312():

head = random.randint(0xB0, 0xCF)

body = random.randint(0xA, 0xF)

tail = random.randint(0, 0xF)

val = ( head << 8 ) | (body << 4) | tail

str = "%x" % val

return str.decode('hex').decode('gb2312')

class ImageChar():

def __init__(self, fontColor = (0, 0, 0),

size = (100, 40),

fontPath = 'wqy.ttc',

bgColor = (255, 255, 255),

fontSize = 20):

self.size = size

self.fontPath = fontPath

self.bgColor = bgColor

self.fontSize = fontSize

self.fontColor = fontColor

self.font = ImageFont.truetype(self.fontPath, self.fontSize)

self.image = Image.new('RGB', size, bgColor)

def rotate(self):

self.image.rotate(random.randint(0, 30), expand=0)

def drawText(self, pos, txt, fill):

draw = ImageDraw.Draw(self.image)

draw.text(pos, txt, font=self.font, fill=fill)

del draw

def randRGB(self):

return (random.randint(0, 255),

random.randint(0, 255),

random.randint(0, 255))

def randPoint(self):

(width, height) = self.size

return (random.randint(0, width), random.randint(0, height))

def randLine(self, num):

draw = ImageDraw.Draw(self.image)

for i in range(0, num):

draw.line([self.randPoint(), self.randPoint()], self.randRGB())

del draw


def randChinese(self, num):

gap = 5

start = 0

for i in range(0, num):

char = RandomChar().GB2312()

x = start + self.fontSize * i + random.randint(0, gap) + gap * i

self.drawText((x, random.randint(-5, 5)), RandomChar().GB2312(), self.randRGB())

self.rotate()

self.randLine(18)

def save(self, path):

self.image.save(path)

调用方法

代码如下:


ic = ImageChar(fontColor=(100,211, 90))

ic.randChinese(4)

ic.save("1.jpeg")

文档

Python随机生成中文验证码的实例代码

Python随机生成中文验证码的实例代码:python代码 代码如下: # -*- coding: utf-8 -*- import Image,ImageDraw,ImageFont import random import math, string class RandomChar(): 用于随机生成汉字 @staticmethod def Unic
推荐度:
标签: 中文 验证码 代码
  • 热门焦点

最新推荐

猜你喜欢

热门推荐

专题
Top