Package nl.captcha.gimpy

Source Code of nl.captcha.gimpy.DropShadowGimpyRenderer

package nl.captcha.gimpy;

import java.awt.image.BufferedImage;
import com.jhlabs.image.ShadowFilter;

import static nl.captcha.util.ImageUtil.applyFilter;

/**
* Twists text and adds a dark drop-shadow.
*
* @author <a href="mailto:james.childers@gmail.com">James Childers</a>
*
*/
public class DropShadowGimpyRenderer implements GimpyRenderer {
  private static final int DEFAULT_RADIUS = 3;
  private static final int DEFAULT_OPACITY = 75;
 
  private final int _radius;
  private final int _opacity;
 
  public DropShadowGimpyRenderer() {
    this(DEFAULT_RADIUS, DEFAULT_OPACITY);
  }
 
  public DropShadowGimpyRenderer(int radius, int opacity) {
    _radius = radius;
    _opacity = opacity;
  }

    public void gimp(BufferedImage image) {
        ShadowFilter sFilter = new ShadowFilter();
        sFilter.setRadius(_radius);
        sFilter.setOpacity(_opacity);
       
        BufferedImage buffer = sFilter.filter(image, null);
        applyFilter(buffer, null);
    }
}
TOP

Related Classes of nl.captcha.gimpy.DropShadowGimpyRenderer

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.