ManualDecoder
void ManualDecoder (ScrapingSession session)
Description
Type of ImageDecoder in the com.screenscraper.util.images
package that uses a popup window prompting the user to enter the text read from an image. Useful for debugging purposes, as the input text should always be correct (so long as it is typed correctly). Helpful during testing to avoid costs associated with paid-for CAPTCHA decoding services such as decaptcher.com.
Parameters
- session Name of currently running scraping session.
Return Values
Returns void. If it runs into any problems decoding an image an error will be thrown.
Change Log
Version | Description |
---|---|
5.5.29a | Available in all editions |
Examples
Initialize script
import com.screenscraper.util.images.*;
ImageDecoder decoder;
decoder = new ManualDecoder(session);
session.setVariable("IMAGE_DECODER", decoder);
ImageDecoder decoder;
decoder = new ManualDecoder(session);
session.setVariable("IMAGE_DECODER", decoder);
swilsonmc on 12/22/2011 at 2:09 pm
- Printer-friendly version
- Login or register to post comments