找到一个验证码图片:
$dll = DllOpen("CrackCaptchaAPI.dll")
$result = DllCall($dll, "int", "Init", "str", "DNF", "str", "03b5962a669eeb14ea8536203dc10695")
$aa = DllStructCreate("char[40]")
DllCall($dll, "int", "Login2", "str", "test", "str", "test")
;~ Dim $url = @ScriptDir & "\yzm.bmp"
Dim $url = @ScriptDir & "\Source.jpg"
DllCall($dll, "int", "DecodeFileSync", "str", $url, "int", "60", "int", 42, "ptr", DllStructGetPtr($aa)) ;上传验证码图片
$result = DllStructGetData($aa, 1)
MsgBox(64, "答案", "获得的答案为:" & $result)
|