思路:
圖片驗證碼的實現主要的技術點是如何生成一個圖片。生成圖片可以使用java.awt包下的類來實現。我們先寫一個簡單的生成圖片的程序HelloImage.java。以下是代碼部分。
package com.vogoal.test;
import java.awt.Color;
import java.awt.Graphics;
import java.awt.image.BufferedImage;
import java.io.File;
import java.io.IOException;
import javax.imageio.ImageIO;
/**
* @author SinNeR@blueidea.com
* create a image
*/
public class HelloImage {
public static void main(String[] args){
BufferedImage image = new BufferedImage(80, 25,
BufferedImage.TYPE_INT_RGB);
Graphics g = image.getGraphics();
g.setColor(new Color(255,255,255));
g.fillRect(0, 0, 80, 25);
g.setColor(new Color(0,0,0));
g.drawString("HelloImage",6,16);
g.dispose();
try{
ImageIO.write(image, "jpeg", new File("C://helloImage.jpeg"));
}catch(IOException e){
e.printStackTrace();
}
}
}
編譯后,在DOS下調用這個程序,正常情況下,會在C盤根目錄下生成一張名字helloImage.jpeg為的圖片。圖片上有文字HelloImage。
簡單介紹下生成圖片的流程:
知道了圖片的生成方法,剩下的問題就是如何將隨機數生成到頁面上了。要顯示圖片,我們只要將生成的圖片流返回給response對象,這樣用戶請求的時候就可以得到圖片。而一個jsp頁面的page參數的contentType屬性可以指定返回的response對象的形式,我們平時的jsp頁面中設定的contentType是text/html,所以會被以HTML文件的形式讀取分析。如果設定為image/jpeg,就會被以圖片的形式讀取分析。確定了這點后就可以著手實現。
以下是生成驗證碼圖片的類RandImgCreater。(操作系統的原因,沒有寫注釋,避免亂碼)
package com.vogoal.util.img;
import java.awt.Color;
import java.awt.Font;
import java.awt.Graphics;
import java.awt.image.BufferedImage;
import java.io.IOException;
import java.util.Random;
import javax.imageio.ImageIO;
import javax.servlet.http.HttpServletResponse;
/**
* @author SinNeR
* http://bbs.blueidea.com
* image check creater
*/
public class RandImgCreater {
private static final String CODE_LIST = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz1234567890";
private HttpServletResponse response = null;
private static final int HEIGHT = 20;
private static final int FONT_NUM = 4;
private int width = 0;
private int iNum = 0;
private String codeList = "";
private boolean drawBgFlag = false;
private int rBg = 0;
private int gBg = 0;
private int bBg = 0;
public RandImgCreater(HttpServletResponse response) {
this.response = response;
this.width = 13 * FONT_NUM 12;
this.iNum = FONT_NUM;
this.codeList = CODE_LIST;
}
public RandImgCreater(HttpServletResponse response,int iNum,String codeList) {
this.response = response;
this.width = 13 * iNum 12;
this.iNum = iNum;
this.codeList = codeList;
}
public String createRandImage(){
BufferedImage image = new BufferedImage(width, HEIGHT,
BufferedImage.TYPE_INT_RGB);
Graphics g = image.getGraphics();
Random random = new Random();
if ( drawBgFlag ){
g.setColor(new Color(rBg,gBg,bBg));
g.fillRect(0, 0, width, HEIGHT);
}else{
g.setColor(getRandColor(200, 250));
g.fillRect(0, 0, width, HEIGHT);
for (int i = 0; i < 155; i ) {
g.setColor(getRandColor(140, 200));
int x = random.nextInt(width);
int y = random.nextInt(HEIGHT);
int xl = random.nextInt(12);
int yl = random.nextInt(12);
g.drawLine(x, y, x xl, y yl);
}
}
g.setFont(new Font("Times New Roman", Font.PLAIN, 18));
String sRand="";
for (int i=0;i
String strRand=codeList.substring(rand,rand 1);
sRand =strRand;
g.setColor(new Color(20 random.nextInt(110),20 random.nextInt(110),20 random.nextInt(110)));
g.drawString(strRand,13*i 6,16);
}
g.dispose();
try{
ImageIO.write(image, "JPEG", response.getOutputStream());
}catch(IOException e){
}
return sRand;
}
public void setBgColor(int r,int g,int b){
drawBgFlag = true;
this.rBg = r;
this.gBg = g;
this.bBg = b;
}
private Color getRandColor(int fc, int bc) {
Random random = new Random();
if (fc > 255)
fc = 255;
if (bc > 255)
bc = 255;
int r = fc random.nextInt(bc - fc);
int g = fc random.nextInt(bc - fc);
int b = fc random.nextInt(bc - fc);
return new Color(r, g, b);
}
}
新聞熱點
疑難解答