<%@ page contentType="image/jpeg; charset=GB2312"  import="java.awt.*,java.util.*,java.awt.image.*"
%>
<%@ taglib uri="/WEB-INF/struts-html.tld" prefix="html" %><html>
<head>
<title>
draw
</title>
</head>
<body bgcolor="#ffffff"><%
int w=6;int h=4;
BufferedImage i=new BufferedImage(w,h,1);\\最后一个参数可以从1到13选择一个,为imgtype
Graphics g=i.getGraphics();
g.drawLine(0,0,w,h);
g.dispose();
%>
</body>
</html>