RECAPTCHA GENERATOR-PYTHON PROJECT

 #impoer the following modules

from captcha.image import ImageCaptcha
#create an image instance of the given size
image=ImageCaptcha(width=280,height=90)
#image captcha text
captch_text='MADHURIMA MOULIK-HONEY'
#generate the image of the given text
data=image.generate(captch_text)
#write the image on the given file and save it
image.write(captch_text,'CAPTCHA.png')

Comments

Popular posts from this blog

java chapter11 practice question on abstruct class and interfaces

DAY 12 -AZURE DP900(Microsoft Azure Data Fundamentals: Explore non-relational data in Azure)

java exercise4