標籤:破解 gray 轉換 phi 方式 出圖 eof value 通過
1 //產生圖片響應流,返回給用戶端 2 //之前是text/html 3 //a.設定響應類型為圖片 4 response.setContentType("image/jpeg"); 5 //b.建立出圖片對象 BufferedImage(0, 0, 0):參數1圖片寬度 參數2圖片高度 參數3 圖片的像素 6 BufferedImage image = new BufferedImage(70, 30, BufferedImage.TYPE_INT_RGB); 7 Graphics g = image.getGraphics();//擷取該圖片對象的畫筆對象 8 //c.畫背景 設定灰色背景 9 g.setColor(Color.GRAY);10 g.fillRect(0, 0, 70, 30);//通過填充矩形的方式,將整個畫的內容填滿11 //d.畫字串 12 //隨機產生5位元的數字字串13 Random r = new Random();14 int num = r.nextInt(100000-10000)+10000; //10000~99999 15 String code =String.valueOf(num);//轉換成字串16 //將產生的字串驗證碼放入session中 綁定到code屬性上17 HttpSession session = request.getSession();18 session.setAttribute("code", code);19 20 //設定字型顏色,設定字型21 g.setColor(Color.BLUE);22 g.setFont(new Font("Consolas",Font.BOLD,20));23 //將字串畫在記憶體中的圖片對象上 24 g.drawString(code, 5, 20);25 //畫一些線條,增加破解難度26 g.setColor(Color.BLACK);27 g.drawLine(r.nextInt(70),r.nextInt(30),r.nextInt(70),r.nextInt(30));28 g.drawLine(r.nextInt(70),r.nextInt(30),r.nextInt(70),r.nextInt(30));29 g.drawLine(r.nextInt(70),r.nextInt(30),r.nextInt(70),r.nextInt(30));30 g.drawLine(r.nextInt(70),r.nextInt(30),r.nextInt(70),r.nextInt(30));31 32 //e.將圖片對象通過流的方式響應回給頁面33 //write(im, formatName, output): im是圖片對象 formatName 是設定圖片的格式 output是輸出資料流對象34 ImageIO.write(image, "JPEG", response.getOutputStream());
簡單驗證碼業務