tags:

views:

293

answers:

2

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.

+4  A: 

Look at Jcaptcha

even better look at reCpatcha

here is a nice article on getting it working in java reCaptcha in java

Paul Whelan
A: 

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

Anantha Kumaran