Java验证码库 iCaptcha

码农软件 · 软件分类 · 验证码(Captcha) · 2019-04-22 14:44:40

软件介绍

iCaptcha 是一个 Java 的验证码库,支持国际化和可定制。

示例代码:

//Optional Properties
Properties props = new Properties();
props.put("format", "jpg");
props.put("font", "Helvetica");
props.put("fontsize", "28");
props.put("min-width", "180");
props.put("padding-x", "25");
props.put("padding-y", "25");
OutputStream os = new FileOutputStream("c:/captcha/text.jpg");
FactoryLanguageImpl inst=(FactoryLanguageImpl)Producer.forName("org.smx.captcha.impl.FactoryLanguageImpl");
inst.setLanguageDirectory("C:/captcha/lang");
inst.setLanguage("RU");
inst.setRange(5, 10); //Select words between 5-10 letters
Producer.render(os, inst, props);

本文地址:https://codercto.com/soft/d/4143.html

Tango with Django

Tango with Django

David Maxwell、Leif Azzopardi / Leanpub / 2016-11-12 / USD 19.00

Tango with Django is a beginner's guide to web development using the Python programming language and the popular Django web framework. The book is written in a clear and friendly style teaching you th......一起来看看 《Tango with Django》 这本书的介绍吧!

SHA 加密
SHA 加密

SHA 加密工具

UNIX 时间戳转换
UNIX 时间戳转换

UNIX 时间戳转换