I want to convert a captcha to a text.Is there any perl code to do that?
I used the following code.I found error with the key value.What key value must be used?Where to find those keys?
use WebService::Antigate;
my $recognizer = WebService::Antigate->new(key => 'd41d8cd98f00b204e9800998ecf8427e');
my $captcha = $recognizer->upload_and_recognize(file => "/tmp/Captcha.jpeg")
or die $recognizer->errstr;
print "Recognized captcha is: ", $captcha, "\n";