更新時間:2016年09月21日10時18分 來源:傳智播客JAVA培訓(xùn)學(xué)院 瀏覽次數(shù):
public class ImageTest { @Test public void fun1() throws FileNotFoundException, IOException{ /* * 1. 創(chuàng)建圖片緩沖區(qū) * 2. 設(shè)置其寬高 * 3. 得到這個圖片的繪制環(huán)境(得到畫筆) * 4. 保存起來 */ BufferedImage bi = new BufferedImage(70, 35, BufferedImage.TYPE_INT_RGB); Graphics2D g = (Graphics2D)bi.getGraphics();//得到繪制環(huán)境 g.setColor(Color.WHITE);//把環(huán)境設(shè)置為白色 g.fillRect(0, 0, 70, 35);//填充矩形!填充矩形,從0,0點開始,寬70,高35,即整個圖片,即為圖片設(shè)置背景色 g.setColor(Color.RED);//把環(huán)境設(shè)置為紅色 g.drawString("Hello", 2, 35-2);//向圖片上寫入字符串,其中2,2表示x,y軸的坐標(biāo) ImageIO.write(bi, "JPEG", new FileOutputStream("F:/xxx.jpg")); } } |
public class VerifyCode { private int w = 70; private int h = 35; private Random r = new Random(); // {"宋體", "華文楷體", "黑體", "華文新魏", "華文隸書", "微軟雅黑", "楷體_GB2312"} private String[] fontNames = {"宋體", "華文楷體", "黑體", "微軟雅黑", "楷體_GB2312"}; // 可選字符 private String codes="23456789abcdefghjkmnopqrstuvwxyzABCDEFGHJKMNPQRSTUV WXYZ"; // 背景色 private Color bgColor = new Color(255, 255, 255); // 驗證碼上的文本 private String text ; |
// 生成隨機的顏色 private Color randomColor () { int red = r.nextInt(150); int green = r.nextInt(150); int blue = r.nextInt(150); return new Color(red, green, blue); } |
int
值。其中局部變量red、green、blue分別代表顏色的RGB的紅、綠、藍三個通道的顏色值。該方法返回的是隨機產(chǎn)生的顏色。// 生成隨機的字體 private Font randomFont () { int index = r.nextInt(fontNames.length); String fontName = fontNames[index];//生成隨機的字體名稱 int style = r.nextInt(4);//生成隨機的樣式, 0(無樣式), 1(粗體), 2(斜體), 3(粗體+斜體) int size = r.nextInt(5) + 24; //生成隨機字號, 24 ~ 28 return new Font(fontName, style, size); } |
// 畫干擾線 private void drawLine (BufferedImage image) { int num = 3;//一共畫3條 Graphics2D g2 = (Graphics2D)image.getGraphics(); for(int i = 0; i < num; i++) {//生成兩個點的坐標(biāo),即4個值 int x1 = r.nextInt(w); int y1 = r.nextInt(h); int x2 = r.nextInt(w); int y2 = r.nextInt(h); g2.setStroke(new BasicStroke(1.5F)); g2.setColor(Color.BLUE); //干擾線是藍色 g2.drawLine(x1, y1, x2, y2);//畫線 } } |
// 隨機生成一個字符 private char randomChar () { int index = r.nextInt(codes.length()); return codes.charAt(index); } |
// 創(chuàng)建BufferedImage private BufferedImage createImage () { BufferedImage image = new BufferedImage(w, h, BufferedImage.TYPE_INT_RGB); Graphics2D g2 = (Graphics2D)image.getGraphics(); g2.setColor(this.bgColor); g2.fillRect(0, 0, w, h); return image; } |
// 返回驗證碼圖片上的文本 public String getText () { return text; } |
// 保存圖片到指定的輸出流 public static void output (BufferedImage image, OutputStream out) throws IOException { ImageIO.write(image, "JPEG", out); } |
// 調(diào)用這個方法得到驗證碼 public BufferedImage getImage () { BufferedImage image = createImage();//創(chuàng)建圖片緩沖區(qū) Graphics2D g2 = (Graphics2D)image.getGraphics();//得到繪制環(huán)境 StringBuilder sb = new StringBuilder();//用來裝載生成的驗證碼文本 // 向圖片中畫4個字符 for(int i = 0; i < 4; i++) {//循環(huán)四次,每次生成一個字符 String s = randomChar() + "";//隨機生成一個字母 sb.append(s); //把字母添加到sb中 float x = i * 1.0F * w / 4; //設(shè)置當(dāng)前字符的x軸坐標(biāo) g2.setFont(randomFont()); //設(shè)置隨機字體 g2.setColor(randomColor()); //設(shè)置隨機顏色 g2.drawString(s, x, h-5); //畫圖 } this.text = sb.toString(); //把生成的字符串賦給了this.text drawLine(image); //添加干擾線 return image; } |
@Test public void fun2() throws FileNotFoundException, IOException{ VerifyCode vc = new VerifyCode();//創(chuàng)建VerifyCode類的對象 BufferedImage bi = vc.getImage();//調(diào)用getImge()方法獲得一個BufferedImage對象 VerifyCode.output(bi, new FileOutputStream("F:/驗證碼.jpg"));//調(diào)用靜態(tài)方法output()方法將圖片保存在文件輸出流中 System.out.println(vc.getText());//在控制臺上打印驗證碼的文本值 } |
(11)執(zhí)行fun2()方法,控制臺上打印結(jié)果如圖1-3所示:
圖1-3 驗證碼信息
(12)由圖1-3可知,驗證碼文本信息為“pxTy”,現(xiàn)在去F盤中找到驗證碼.jpg,打開如圖1-4所示:
圖1-4 驗證碼
在以后的開發(fā)中,想獲得驗證碼就可以把VerifyCode類當(dāng)作一個幫助類,將它拷貝到自己的項目中然后調(diào)用相應(yīng)的方法就可以獲得驗證碼圖片。
本文版權(quán)歸傳智播客Java培訓(xùn)學(xué)院所有,歡迎轉(zhuǎn)載,轉(zhuǎn)載請注明作者出處。謝謝!
作者:傳智播客Java培訓(xùn)學(xué)院
首發(fā):http://metathetuscanyresort.com/javaee