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

spring.turbo.module.misc.captcha.google.renderer.SimpleTextRenderer Maven / Gradle / Ivy

There is a newer version: 3.4.0
Show newest version
package spring.turbo.module.misc.captcha.google.renderer;

/**
 * @since 1.0.0
 */
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();
        }
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy