/**
* Set a gradient background.
*/
public Captcha setBackground(String from, String to) {
GradiatedBackgroundProducer bg = new GradiatedBackgroundProducer();
bg.setFromColor(Color.decode(from));
bg.setToColor(Color.decode(to));
background = bg;
return this;
}