-
Notifications
You must be signed in to change notification settings - Fork 46
/
jingdong_factory.py
49 lines (37 loc) · 1.52 KB
/
jingdong_factory.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
# coding: utf-8
import json
import sys
sys.path.append("..")
from PIL import Image
from PIL import ImageFilter
from model.capthafactory import CaptchaFactory
from model.utils import CaptchaUtils
def custom_fn(single_char):
# do something you wanted
# return single_char.filter(ImageFilter.GaussianBlur)
return single_char
def bg_custom_fn(bg):
# do something you wanted
# return bg.filter(ImageFilter.GaussianBlur)
CaptchaUtils.draw_line(bg, (0, CaptchaUtils.random_choice_from(range(12, 14))),
(85, CaptchaUtils.random_choice_from(range(13, 15))),
CaptchaUtils.get_rgb("0x595e12"), 1)
CaptchaUtils.draw_line(bg, (0, CaptchaUtils.random_choice_from(range(11, 16))),
(85, CaptchaUtils.random_choice_from(range(17, 21))), CaptchaUtils.get_rgb("0x563c7c"), 1)
return bg
def main():
project_name = "jingdong"
with open("configs/%s.json" % project_name, encoding="utf-8") as fp:
demo_config = json.load(fp)
demo_factory = CaptchaFactory(char_custom_fns=[custom_fn], bg_custom_fns=[bg_custom_fn], **demo_config)
number = 3
while number:
# captcha = demo_factory.generate_captcha(specific_chars=specific)
captcha = demo_factory.generate_captcha()
captcha.save("output/%s/%s.jpg" % (project_name, captcha.text))
# for c in captcha.chars:
# print(c.char_text, c.color)
print(captcha.text, captcha.num)
number -= 1
if __name__ == "__main__":
main()