import javaawtFont;
import javaawtGraphics;
import javaawtimageBufferedImage;
import javaioIOException;
import javaioOutputStream;
import javautilRandom;
import javaximageioImageIO;
public class Code {
// 的宽度。
private int width = 160;
// 的高度。
private int height = 38;
// 验证码字符个数
private int codeCount = 4;
// 验证码干扰线数
private int lineCount = 20;
// 验证码
private String code = null;
// 验证码Buffer
private BufferedImage buffImg = null;
Random random = new Random();
private boolean type = false;
public Code() {
}
public Code(int width, int height) {
thiswidth = width;
thisheight = height;
}
public Code(int width, int height, int codeCount) {
thiswidth = width;
thisheight = height;
thiscodeCount = codeCount;
}
public Code(int width, int height, int codeCount, int lineCount) {
thiswidth = width;
thisheight = height;
thiscodeCount = codeCount;
thislineCount = lineCount;
}
public void init(boolean type){
thistype = type;
}
// 生成
private void creatImage(boolean type) {
int fontWidth = width / codeCount;// 字体的宽度
int fontHeight = height - 5;// 字体的高度
int codeY = height - 8;
// 图像buffer
buffImg = new BufferedImage(width, height, BufferedImageTYPE_INT_RGB);
Graphics g = buffImggetGraphics();
//Graphics2D g = buffImgcreateGraphics();
// 设置背景色
gsetColor(getRandColor(200, 250));
gfillRect(0, 0, width, height);
// 设置字体
Font font = null;
if(!type) font = new Font("Fixedsys", FontBOLD, fontHeight);
else font = getFont(fontHeight);
gsetFont(font);
// 设置干扰线
for (int i = 0; i < lineCount/2; i++) {
int xs = randomnextInt(width);
int ys = randomnextInt(height);
int xe = xs + randomnextInt(width);
int ye = ys + randomnextInt(height);
gsetColor(getRandColor(1, 255));
if(!type) gdrawLine(xs, ys, xe, ye);
else shear(g, width, height, getRandColor(1, 255)) ;
}
// 添加噪点
float yawpRate = 001f;// 噪声率
int area = (int) (yawpRate width height);
for (int i = 0; i < area; i++) {
int x = randomnextInt(width);
int y = randomnextInt(height);
buffImgsetRGB(x, y, randomnextInt(255));
}
String str1 = randomStr(codeCount);// 得到随机字符
thiscode = str1;
for (int i = 0; i < codeCount; i++) {
String strRand = str1substring(i, i + 1);
gsetColor(getRandColor(1, 255));
// gdrawString(a,x,y);
// a为要画出来的东西,x和y表示要画的东西最左侧字符的基线位于此图形上下文坐标系的 (x, y) 位置处
gdrawString(strRand, ifontWidth+3, codeY);
}
}
// 得到随机字符
private String randomStr(int n) {
String str1 = "ABCDEFGHJKLMNOPQRSTUVWXYZabcdefghijkmnopqrstuvwxyz1234567890";//I和l不要
String str2 = "";
int len = str1length() - 1;
double r;
for (int i = 0; i < n; i++) {
r = (Mathrandom()) len;
str2 = str2 + str1charAt((int) r);
}
return str2;
}
// 得到随机颜色
private Color getRandColor(int fc, int bc) {// 给定范围获得随机颜色
if (fc > 255)
fc = 255;
if (bc > 255)
bc = 255;
int r = fc + randomnextInt(bc - fc);
int g = fc + randomnextInt(bc - fc);
int b = fc + randomnextInt(bc - fc);
return new Color(r, g, b);
}
/
产生随机字体
/
private Font getFont(int size) {
Random random = new Random();
Font font[] = new Font[5];
font[0] = new Font("Ravie", FontPLAIN, size);
font[1] = new Font("Antique Olive Compact", FontPLAIN, size);
font[2] = new Font("Fixedsys", FontPLAIN, size);
font[3] = new Font("Wide Latin", FontPLAIN, size);
font[4] = new Font("Gill Sans Ultra Bold", FontPLAIN, size);
return font[randomnextInt(5)];
}
// 扭曲方法
private void shear(Graphics g, int w1, int h1, Color color) {
shearX(g, w1, h1, color);
shearY(g, w1, h1, color);
}
private void shearX(Graphics g, int w1, int h1, Color color) {
int period = randomnextInt(2);
boolean borderGap = true;
int frames = 1;
int phase = randomnextInt(2);
for (int i = 0; i < h1; i++) {
double d = (double) (period >> 1)
Mathsin((double) i / (double) period
+ (62831853071795862D (double) phase)
/ (double) frames);
gcopyArea(0, i, w1, 1, (int) d, 0);
if (borderGap) {
gsetColor(color);
gdrawLine((int) d, i, 0, i);
gdrawLine((int) d + w1, i, w1, i);
}
}
}
private void shearY(Graphics g, int w1, int h1, Color color) {
int period = randomnextInt(40) + 10; // 50;
boolean borderGap = true;
int frames = 20;
int phase = 7;
for (int i = 0; i < w1; i++) {
double d = (double) (period >> 1)
Mathsin((double) i / (double) period
+ (62831853071795862D (double) phase)
/ (double) frames);
gcopyArea(i, 0, 1, h1, 0, (int) d);
if (borderGap) {
gsetColor(color);
gdrawLine(i, (int) d, i, 0);
gdrawLine(i, (int) d + h1, i, h1);
}
}
}
public void write(OutputStream sos) throws IOException {
if(buffImg == null) creatImage(type);
ImageIOwrite(buffImg, "png", sos);
// JPEGImageEncoder encoder = JPEGCodeccreateJPEGEncoder(sos);
// encoderencode(buffImg);
sosclose();
}
public BufferedImage getBuffImg() {
if(buffImg == null) creatImage(type);
return buffImg;
}
public String getCode() {
return codetoLowerCase();
}
//使用方法
/public void getCode3(>
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)