Mercurial > ift6266
annotate pycaptcha/Captcha/Visual/Pictures.py @ 93:7054d7afb948
Ajout d'un graphique (histogramme) comparatif pour l'occurence de chaque caractere
author | SylvainPL <sylvain.pannetier.lebeuf@umontreal.ca> |
---|---|
date | Thu, 11 Feb 2010 11:23:35 -0500 |
parents | 4775b4195b4b |
children |
rev | line source |
---|---|
87 | 1 """ Captcha.Visual.Pictures |
2 | |
3 Random collections of images | |
4 """ | |
5 # | |
6 # PyCAPTCHA Package | |
7 # Copyright (C) 2004 Micah Dowty <micah@navi.cx> | |
8 # | |
9 | |
10 from Captcha import File | |
11 import Image | |
12 | |
13 | |
14 class ImageFactory(File.RandomFileFactory): | |
15 """A factory that generates random images from a list""" | |
16 extensions = [".png", ".jpeg"] | |
17 basePath = "pictures" | |
18 | |
19 | |
20 abstract = ImageFactory("abstract") | |
21 nature = ImageFactory("nature") | |
22 | |
23 ### The End ### |