Generate letter verification image (python ),

Source: Internet
Author: User

Generate letter verification image (python ),
Generate letter verification image (python) by Wu xueying


From PILimport Image, ImageDraw, ImageFont
Import random

Def generate_authenticode ():
Letters = random. sample ('abcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyz0123456789 ', 4)
Width = 100
Height = 40
Im = Image. new ("RGB", (width, height), (255,255,255 ))
Dr = ImageDraw. Draw (im)
Font = ImageFont. truetype ("/Library/Fonts/arial. ttf", 30)

For iin range (4 ):
Dr. text (5 + I * 20, 5), letters [I], (random. randint (0,255), random. randint (0,255), random. randint (0,255), font)
Del dr

For xin range (width ):
For yin range (height ):
If im. getpixel (x, y) == (255,255,255 ):
Im. putpixel (x, y), (random. randint (0,255), random. randint (0,255), random. randint (0,255 )))

Im.save('result.png ')

If _ name _ = "_ main _": generate_authenticode ()

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.