這期內(nèi)容當(dāng)中小編將會(huì)給大家?guī)?lái)有關(guān)java中項(xiàng)目實(shí)現(xiàn)一個(gè)隨機(jī)輸出圖片功能,文章內(nèi)容豐富且以專(zhuān)業(yè)的角度為大家分析和敘述,閱讀完這篇文章希望大家可以有所收獲。
網(wǎng)站建設(shè)哪家好,找成都創(chuàng)新互聯(lián)公司!專(zhuān)注于網(wǎng)頁(yè)設(shè)計(jì)、網(wǎng)站建設(shè)、微信開(kāi)發(fā)、小程序制作、集團(tuán)企業(yè)網(wǎng)站建設(shè)等服務(wù)項(xiàng)目。為回饋新老客戶(hù)創(chuàng)新互聯(lián)還提供了環(huán)縣免費(fèi)建站歡迎大家使用!
java 實(shí)現(xiàn)輸出隨機(jī)圖片實(shí)例代碼
輸出隨機(jī)圖片(CAPTCHA圖像):Completely Automated Public Turing Test to Tell Computers and Humans Apart (全自動(dòng)區(qū)分計(jì)算機(jī)和人類(lèi)的測(cè)試)
相關(guān)主要類(lèi)(JDK 查看API)
BufferedImage:內(nèi)存圖像
Graphics:畫(huà)筆
ImageIO:輸出圖像
放在html頁(yè)面上
注意:瀏覽器默認(rèn)會(huì)緩存圖片
public static int WIDTH = 120; public static int HEIGHT = 25; public void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException { response.setContentType("text/html"); //創(chuàng)建內(nèi)存圖像 BufferedImage image = new BufferedImage(WIDTH,HEIGHT,BufferedImage.TYPE_INT_RGB); //勾勒?qǐng)D像 Graphics graphics = image.getGraphics(); //設(shè)置背景 graphics.setColor(Color.WHITE); graphics.fillRect(0, 0, WIDTH, HEIGHT); //設(shè)置邊框 graphics.setColor(Color.BLUE); graphics.drawRect(1, 1, WIDTH-2, HEIGHT-2); //畫(huà)干擾線(xiàn) graphics.setColor(Color.YELLOW); for(int i=0;i<8;i++){ int xStart = new Random().nextInt(WIDTH); int yStart = new Random().nextInt(HEIGHT); int xEnd = new Random().nextInt(WIDTH); int yEnd = new Random().nextInt(HEIGHT); graphics.drawLine(xStart, yStart, xEnd, yEnd); } //寫(xiě)隨機(jī)數(shù) graphics.setColor(Color.RED); int x = 5; for(int i=0;i<4;i++){ graphics.drawString(new Random().nextInt(9)+"", x, 20); x+=30; } response.setContentType("image/jpeg");//設(shè)置響應(yīng)格式 ImageIO.write(image, "jpeg", response.getOutputStream()); }
上述就是小編為大家分享的java中項(xiàng)目實(shí)現(xiàn)一個(gè)隨機(jī)輸出圖片功能了,如果剛好有類(lèi)似的疑惑,不妨參照上述分析進(jìn)行理解。如果想知道更多相關(guān)知識(shí),歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道。