public SimpleCaptchaService(int width, int height, Color textColor, Color backgroundColor, int fontSize, String[] fontNames, FilterFactory ff) {
backgroundFactory = new SingleColorBackgroundFactory(backgroundColor);
wordFactory = new AdaptiveRandomWordFactory();
fontFactory = new RandomFontFactory(fontNames);
textRenderer = new BestFitTextRenderer();
colorFactory = new SingleColorFactory(textColor);
filterFactory = ff;
this.width = width;
this.height = height;
}