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

cn.atomtool.captcha.text.renderer.TextRenderer Maven / Gradle / Ivy

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);

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy