簡單驗證碼業務

來源:互聯網
上載者:User

標籤:破解   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());

 

簡單驗證碼業務

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.