recognize_invoice

recognize_invoice($filename); - recognize the receipt

It uses the following object fields :
  • $this->api_key - API key

    The function accepts parameters as input:

  • $filename – path to the receipt image

    After testing, the function returns the result of its work to the script :
  • The result of recognition is a captcha string or a code string with an error response:
  • ERROR_KEY_DOES_NOT_EXIST - you used an invalid captcha key in the request
  • ERROR_WRONG_ID_FORMAT - invalid captcha ID, only numbers are accepted
  • ERROR_CAPTCHA_UNSOLVABLE - captcha could not be solved by 5 different employees

    PHP example: rucaptcha->".basename(__FILE__)."
    "; //API key $rucaptcha->api_key = "cdbecaf74aaf1aadafbd97189886ab92"; //1 echo "1.Let's go to the polygon:"; echo $browser->navigate("http://www.humanemulator.net/poligon/image.html")."
    "; //2 echo "2.Recognize captcha using the rucaptcha.com service(as a cashier's receipt):"; echo $image->screenshot_by_src("tmp/1.jpg", "chek_obrazec", false).""; echo $rucaptcha->recognize_invoice($debug->get_cur_script_folder()."tmp \ 1.jpg")." n"; //3 echo "3.Display information:"; echo $rucaptcha->get_last_capcha_filename().""; echo $rucaptcha->get_last_capcha_id().""; echo $rucaptcha->get_last_capcha_result()."
    "; //4 echo "4.Set the default recognition parameters:"; echo $rucaptcha->set_default_params(); //end echo "

    "; //Quit $app->quit(); ?>
    Python example: # Additional paths import sys sys.path.insert(0, '../../../Templates PY/') xhe_host = "127.0.0.1:7010" from xweb_human_emulator import * # Start echo("
    rucaptcha.xxxxxxxxx
    ") # API key rucaptcha.api_key = "cdbecaf74aaf1aadafbd97189886ab92" # 1 echo("1.Let's go to the polygon:") echo(browser.navigate("http://www.humanemulator.net/poligon/image.html"), "
    ") # 2 echo("2.Recognize captcha using the rucaptcha.com service(like a cashier's receipt):") echo(image.screenshot_by_src("tmp/1.jpg", "chek_obrazec", false), "") echo(rucaptcha.recognize_invoice(debug.get_cur_script_folder() + "tmp \ 1.jpg"), " ") # 3 echo("3.Display information:") echo(rucaptcha.get_last_capcha_filename(), "") echo(rucaptcha.get_last_capcha_id(), "") echo(rucaptcha.get_last_capcha_result(), "
    ") # 4 echo("4.Set the default recognition parameters:") echo(rucaptcha.set_default_params()) # end echo("

    ") # Quit app.quit()
    C# example: Java Script example: //connect the object to control the emulator, if not already connected xhe_host = "127.0.0.1:7010"; echo = require("../../../Templates JS/xweb_human_emulator.js"); //Start echo("
    rucaptcha.recognize_invoice
    "); //API key rucaptcha.api_key = ""); //1 step echo("1.Let's go to the polygon:"); echo(browser.navigate("http://www.humanemulator.net/poligon/image.html") + "
    "); //step 2 echo("2.Recognize the captcha using the rucaptcha.com service(like a cashier's receipt):"); echo(image.screenshot_by_src("tmp/1.jpg", "chek_obrazec", false) + ""); echo(rucaptcha.recognize_invoice(debug.get_cur_script_folder()."tmp \ 1.jpg") + " n"); //step 3 echo("3.Display information:"); echo(rucaptcha.get_last_capcha_filename() + ""); echo(rucaptcha.get_last_capcha_id() + ""); echo(rucaptcha.get_last_capcha_result() + "
    "); //step 4 echo("4.Set the default recognition parameters:"); echo(rucaptcha.set_default_params(); //end echo("

    "); //Quit app.quit();