All Downloads are FREE. Search and download functionalities are using the official Maven repository.

jj.play.ns.nl.captcha.backgrounds.BackgroundProducer Maven / Gradle / Ivy

Go to download

SimpleCaptcha - an easy to implement CAPTCHA framework to generate image and audio challenges, for Java 1.5 and Java 6 (repackaged by Play! Framework)

The newest version!
package jj.play.ns.nl.captcha.backgrounds;

import java.awt.image.BufferedImage;

/**
 * 
 * @author James Childers
 * 
 */
public interface BackgroundProducer {

    /**
     * Add the background to the given image.
     * 
     * @param image
     * @return
     */
    public BufferedImage addBackground(BufferedImage image);
    
    public BufferedImage getBackground(int width, int height);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy