View Javadoc

1   /*
2    * JCaptcha, the open source java framework for captcha definition and integration
3    * Copyright (c)  2007 jcaptcha.net. All Rights Reserved.
4    * See the LICENSE.txt file distributed with this package.
5    */
6   
7   /*
8    * jcaptcha, the open source java framework for captcha definition and integration
9    * copyright (c)  2007 jcaptcha.net. All Rights Reserved.
10   * See the LICENSE.txt file distributed with this package.
11   */
12  
13  /*
14   * jcaptcha, the open source java framework for captcha definition and integration
15   * copyright (c)  2007 jcaptcha.net. All Rights Reserved.
16   * See the LICENSE.txt file distributed with this package.
17   */
18  
19  package com.octo.captcha.engine.image.gimpy;
20  
21  import com.octo.captcha.component.image.backgroundgenerator.BackgroundGenerator;
22  import com.octo.captcha.component.image.backgroundgenerator.UniColorBackgroundGenerator;
23  import com.octo.captcha.component.image.color.SingleColorGenerator;
24  import com.octo.captcha.component.image.deformation.ImageDeformation;
25  import com.octo.captcha.component.image.deformation.ImageDeformationByFilters;
26  import com.octo.captcha.component.image.deformation.ImageDeformationByBufferedImageOp;
27  import com.octo.captcha.component.image.fontgenerator.FontGenerator;
28  import com.octo.captcha.component.image.fontgenerator.RandomFontGenerator;
29  import com.octo.captcha.component.image.textpaster.TextPaster;
30  import com.octo.captcha.component.image.textpaster.DecoratedRandomTextPaster;
31  import com.octo.captcha.component.image.textpaster.textdecorator.BaffleTextDecorator;
32  import com.octo.captcha.component.image.textpaster.textdecorator.TextDecorator;
33  import com.octo.captcha.component.image.wordtoimage.DeformedComposedWordToImage;
34  import com.octo.captcha.engine.image.ListImageCaptchaEngine;
35  
36  import java.awt.*;
37  import java.awt.image.ImageFilter;
38  import java.util.ArrayList;
39  
40  /***
41   * <p/>
42   * This is the default captcha engine. It provides a sample gimpy challenge that has no automated solution known. It is
43   * based on the Baffle SPARC Captcha.
44   * <p/>
45   * </p>
46   *
47   * @author <a href="mailto:mag@jcaptcha.net">Marc-Antoine Garrigue</a>
48   * @version 1.0
49   */
50  public class DefaultGimpyEngine extends GmailEngine {
51  
52      
53  }