標籤:imp int ima save image div rgb pil 寬度
#encoding=utf-8import random# import matplotlib.pyplot as pltimport stringimport sysimport mathfrom PIL import Image,ImageDraw,ImageFont,ImageFilterfilename="C:/Users/123/Desktop/yzm/"#字型的位置,不同版本的系統會有不同BuxtonSketch.ttffont_path = ‘C:/Windows/Fonts/Georgia.ttf‘#font_path = ‘C:/Windows/Fonts/默陌肥圓手寫體.ttf‘#產生幾位元的驗證碼number = 4#產生驗證碼圖片的高度和寬度size = (129,53)#背景顏色,預設為白色bgcolor = (255,255,255)#字型顏色,預設為藍色fontcolor = (0,0,0)#幹擾線顏色。預設為紅色linecolor = (0,0,0)#是否要加入幹擾線draw_line = True#加入幹擾線條數的上下限line_number = (1,5)#用來隨機產生一個字串def gene_text(): # source = list(string.letters) # for index in range(0,10): # source.append(str(index)) source = [‘0‘,‘1‘,‘2‘,‘3‘,‘4‘,‘5‘,‘6‘,‘7‘,‘8‘,‘9‘] # source = [ ‘A‘, ‘B‘, ‘C‘, ‘D‘, ‘E‘, ‘F‘, ‘G‘, ‘H‘,‘I‘,‘J‘, ‘K‘,‘L‘, ‘M‘, ‘N‘,‘O‘,‘P‘,‘Q‘,‘R‘, # ‘S‘, ‘T‘, ‘U‘, ‘V‘, ‘W‘, ‘Z‘,‘X‘, ‘Y‘] return ‘‘.join(random.sample(source,number))#number是產生驗證碼的位元#用來繪製幹擾線def gene_line(draw,width,height): # begin = (random.randint(0, width), random.randint(0, height)) # end = (random.randint(0, width), random.randint(0, height)) begin = (0, random.randint(0, height)) end = (74, random.randint(0, height)) draw.line([begin, end], fill = linecolor,width=3)#產生驗證碼def gene_code(): width,height = size #寬和高 image = Image.new(‘RGBA‘,(width,height),bgcolor) #建立圖片 font = ImageFont.truetype(font_path,40) #驗證碼的字型 draw = ImageDraw.Draw(image) #建立畫筆 text = gene_text() #產生字串 font_width, font_height = font.getsize(text) draw.text(((width - font_width) / number, (height - font_height) / number),text, font= font,fill=fontcolor) #填充字串 if draw_line: gene_line(draw,width,height) image = image.transform((width+30,height+10), Image.AFFINE, (1,-0.3,0,-0.1,1,0),Image.BILINEAR) #建立扭曲 # image = image.transform((width+20,height+10), Image.AFFINE, (1,-0.3,0,-0.1,1,0),Image.BILINEAR) #建立扭曲 image = image.filter(ImageFilter.EDGE_ENHANCE_MORE) #濾鏡,邊界加強 # a = str(m) aa = str(".png") path = filename + text + aa # cv2.imwrite(path, I1) # image.save(‘idencode.jpg‘) #儲存驗證碼圖片 image.save(path)x=1# if __name__ == "__main__":# for k in(1,1000):while x<20: gene_code() x+=1
python產生驗證碼