- Регистрация
- 13.01.2009
- Сообщения
- 2 285
- Благодарностей
- 2 732
- Баллы
- 113
This a step by step instruction how to create your own recognition module.
- Create project "Class library" (which produces a dll as an output). Compile it for .NET FrameWork 3.5
- Add to the references interfaceslibrary.dll from ZennoPoster's folder
- Create a class inherited from ICommonInterface
C#:public class AntiCaptcha : ICommonInterface { #region ICommonInterface Members public string RecognizeCaptcha(Bitmap bmp) { return RecognizeCaptcha(bmp, null); } public string RecognizeCaptcha(Bitmap bmp, object parameters) { return string.Empty; } #endregion }
- Put result DLL in the ZennoPoster folder.
Последнее редактирование: