We're using SimpleCaptcha http://simplecaptcha.sourceforge.net/ to creating a captcha in our registration form (running on Tomcat)
We create the captcha using:
Captcha captcha = new Captcha.Builder(300, 57).build();
and the captcha is displayed as follows:
But when I add more options to the captcha such as Captcha captcha = new Captcha.Builder(300, 57).addNoise().build();
, it's still displayed in the same way without the noise. I tried more options but still get the same results.
Does anyone know why this is happening please?
Thanks,
Kurt