I have a Perl program written where users can upload images (JPG, PNG, GIF, or BMP) to the server. These images correspond to classified ads.
But is there ANY way to test whether the image contains text?
The reason for this is because I don't allow ads that promote competing sites, but lately I've had a rash of them uploading images that contain the text for the competing site. I don't have a way to filter it automatically, so it ends up showing until I manually remove it.
It's not always even intentional. Sometimes someone will post the ad on a competing site, then for some reason take a screenshot of it and upload it to an ad on my site. Why they think this is easier, I can't even begin to tell you, but it happens at least once a day.
I don't necessarily need for the script to know what the text says, just that it exists. Then I can flag any ad that contains an image with text, and manually approve it later if it's OK.
I'm open to rebuilding in any programming language.
TIA!