<address id="ousso"></address>
<form id="ousso"><track id="ousso"><big id="ousso"></big></track></form>
  1. java語言

    JSP圖片驗證碼技巧

    時間:2025-02-05 10:35:37 java語言 我要投稿
    • 相關推薦

    JSP圖片驗證碼技巧

      圖片驗證碼的實現主要的技術點是如何生成一個圖片。生成圖片可以使用java.awt包下的類來實現。下面,小編為大家搜索整理了JSP圖片驗證碼技巧,希望能給大家帶來幫助!更多精彩內容請及時關注我們應屆畢業生考試網!

      我們先寫一個簡單的生成圖片的程序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。

      簡單介紹下生成圖片的流程:

      建立BufferedImage對象。指定圖片的長度寬度和色彩。

      BufferedImage image = new BufferedImage(80,25,BufferedImage.TYPE_INT_RGB);

      取得Graphics對象,用來繪制圖片。

      Graphics g = image.getGraphics();

      繪制圖片背景和文字。

      釋放Graphics對象所占用的資源。

      g.dispose();

      通過ImageIO對象的write靜態方法將圖片輸出。

      ImageIO.write(image, "jpeg", new File("C:\\helloImage.jpeg"));

      知道了圖片的生成方法,剩下的問題就是如何將隨機數生成到頁面上了。要顯示圖片,我們只要將生成的圖片流返回給response對象,這樣用戶請求的時候就可以得到圖片。而一個jsp頁面的page參數的contentType屬性可以指定返回的response對象的形式,我們平時的jsp頁面中設定的contentType是text/html,所以會被以HTML文件的形式讀取分析。如果設定為image/jpeg,就會被以圖片的形式讀取分析。確定了這點后就可以著手實現。

      修改生成圖片的類,添加生成隨機字符串的方法,并取得用戶傳過來的response對象將圖片流輸出到response對象中。同時為了更友好和可訂制,添加了一個構造函數,可以修改圖片驗證碼的長度,以及驗證碼的碼字范圍。并且可以設定驗證碼的背景色。(用戶使用時可以設定驗證圖片的背景色與頁面的背景色相同)

      寫一個jsp文件,用來調用生成驗證碼圖片的類。并得到生成的驗證碼,存入session。

      以下是生成驗證碼圖片的類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

      int rand=random.nextInt(codeList.length());

      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);

      }

      }

    【JSP圖片驗證碼技巧】相關文章:

    php生成動態圖片驗證碼代碼07-23

    php生成動態圖片驗證碼的一段代碼04-30

    ps圖片的裁剪技巧04-14

    JSP的基礎原理05-30

    網頁圖片設計的常用技巧08-12

    photoshop處理圖片的技巧推薦07-27

    PS美食圖片的處理技巧04-06

    jsp試題及答案05-07

    網頁設計中圖片的使用技巧05-05

    <address id="ousso"></address>
    <form id="ousso"><track id="ousso"><big id="ousso"></big></track></form>
    1. 日日做夜狠狠爱欧美黑人