How to convert text to captcha image.
EDIT
i looked at jcaptcha. It creates a random text for a id. But i need a image with the given text.
How to convert text to captcha image.
EDIT
i looked at jcaptcha. It creates a random text for a id. But i need a image with the given text.
Look at Jcaptcha
even better look at reCpatcha
here is a nice article on getting it working in java reCaptcha in java
Jcaptcha provides classes to convert a text into image.
sample code:
WordToImage image = ComposedWordToImage(fontGenerator, background,textPaster);
BufferedImage image = image.getImage("text");
api doc of WordToImage interface