📄 wordrenderercontroller.groovy
字号:
import nl.captcha.Captchaimport nl.captcha.text.renderer.*import nl.captcha.servlet.CaptchaServletUtilclass WordRendererController { def final WIDTH = 200 def final HEIGHT = 50 def simple = { def captcha = new Captcha.Builder(WIDTH, HEIGHT) .addText() .build() CaptchaServletUtil.writeImage(response, captcha.image) } def simple2 = { def captcha = new Captcha.Builder(WIDTH, HEIGHT) .addText(new ColoredEdgesWordRenderer()) .build() CaptchaServletUtil.writeImage(response, captcha.image) }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -