29 lines
607 B
PHP
29 lines
607 B
PHP
<?php
|
|
|
|
include("anticaptcha.php");
|
|
include("imagetotext.php");
|
|
|
|
$api = new ImageToText();
|
|
$api->setVerboseMode(true);
|
|
|
|
//your anti-captcha.com account key
|
|
$api->setKey("12345678901234567890123456789012");
|
|
|
|
//setting file
|
|
$api->setFile("capcha.jpg");
|
|
|
|
if (!$api->createTask()) {
|
|
$api->debout("API v2 send failed - ".$api->getErrorMessage(), "red");
|
|
return false;
|
|
}
|
|
|
|
$taskId = $api->getTaskId();
|
|
|
|
|
|
if (!$api->waitForResult()) {
|
|
$api->debout("could not solve captcha", "red");
|
|
$api->debout($api->getErrorMessage());
|
|
} else {
|
|
echo "\nhash result: ".$api->getTaskSolution()."\n\n";
|
|
}
|