Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Simple yet powerful verification code library written in Java with zero dependency.

Notifications You must be signed in to change notification settings

JetClouds/acLibrary

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

acLibrary: verification code library for Java

Overview

Simple yet powerful verification code library written in Java with zero dependency.

You can generate verification code picture like this:

Web Mode:

OutputStream os = request.getOutputStream();
String code = Generate.obtainWebImage(160, 70, 45, 45, 6, 6, os, "png");

File Mode:

String filePath = "D:\\codeImage.png";
String code = Generate.obtainImageFile(160, 70, 45, 45, 6, 6, filePath, "png");

it generate picture like this:
sample

Apache Maven

<dependency>
  <groupId>cn.jetclouds</groupId>
  <artifactId>aclibrary</artifactId>
  <version>1.0.0</version>
</dependency>

About

Simple yet powerful verification code library written in Java with zero dependency.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages