cn.atomtool.captcha.text.renderer.TextRenderer Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of atomtool-captcha Show documentation
Show all versions of atomtool-captcha Show documentation
atomTool核心工具包,包括集合、字符串、Bean等工具类
The newest version!
package cn.atomtool.captcha.text.renderer;
import cn.atomtool.captcha.color.ColorFactory;
import cn.atomtool.captcha.font.FontFactory;
import java.awt.image.BufferedImage;
public interface TextRenderer {
void setLeftMargin(int leftMargin);
void setRightMargin(int rightMargin);
void setTopMargin(int topMargin);
void setBottomMargin(int bottomMargin);
void draw(String text, BufferedImage canvas, FontFactory fontFactory, ColorFactory colorFactory);
}