cn.atomtool.captcha.text.renderer.SimpleTextRenderer 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;
public class SimpleTextRenderer extends AbstractTextRenderer {
@Override
protected void arrangeCharacters(int width, int height, TextString ts) {
double x = leftMargin;
for (TextCharacter tc : ts.getCharacters()) {
double y = topMargin + (height + tc.getAscent() * 0.7) / 2;
tc.setX(x);
tc.setY(y);
x += tc.getWidth();
}
}
}