kodakjerec / cbl-js

JavaScript CAPTCHA solving library

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

原始網站

https://github.com/skotz/cbl-js

cbl-js

CAPTCHA解析,使用純Javascript和HTML5 canvas

元作者的範例 working example
元作者的快速上手 quick start guide

中文函數操作範例 function sample
跟著做中文案例 second start guide zhTW

Preprocessing Example

Preprocessing Example

preprocess: function(img) {
    img.removeGray(20);
    img.blur(2);
    img.binarize(190);
    img.colorRegions(40, true);
}

Learn by reviewing dozens of example solutions to common patterns found in CAPTCHAs.

About

JavaScript CAPTCHA solving library

License:MIT License


Languages

Language:JavaScript 75.4%Language:HTML 21.9%Language:CSS 2.6%Language:Batchfile 0.1%