程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> JSP編程 >> 關於JSP >> 利用JSP直接繪制圖片並輸出到IE裡

利用JSP直接繪制圖片並輸出到IE裡

編輯:關於JSP

以下代碼經測試成功, 直接復制到jsp(SUN企業級應用的首選)中即可以運行

<%@ page import="java.awt.*" %>
<%@ page import="java.awt.image.*" %>
<%@ page import="com.sun.image.codec.jpeg.*" %>
<%@ page import="java.util.*" %>


<%
  //test by liboy

  int width=400;
  int height= 400;

  BufferedImage image = new BufferedImage(width, height, BufferedImage.TYPE_INT_RGB);
  
  Graphics g = image.getGraphics();
  //Graphics2d g2d = image.createGraphics();


  g.setColor(Color.white);
  g.fillRect(0, 0, width, height);
  g.setColor(Color.black);
  g.drawRect(0,0,width-1,height-1);
  // Create random polygon
  Polygon poly = new Polygon();
  Random random = new Random();
  for (int i=0; i<5; i++) {
  poly.addPoint(random.nextInt(width), random.nextInt(height));
  }
  // Fill polygon
  g.setColor(Color.cyan);
  g.fillPolygon(poly);
  // Dispose context
  g.dispose();


        response.reset();
        response.setContentType("image/jpeg");

  ServletOutputStream sos = response.getOutputStream();
  JPEGImageEncoder encoder = JPEGCodec.createJPEGEncoder(sos);
  encoder.encode(image);

%>

OICQ: 86804

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved