当前位置: 技术问答>java相关
求救JSP画图,可与html格式同时使用吗?
来源: 互联网 发布时间:2015-03-26
本文导语: BufferedImage image = new BufferedImage(X,Y, BufferedImage.TYPE_INT_RGB); Graphics g = image.getGraphics(); Graphics2D g2d= (Graphics2D)g; g2d.setBackground(Color.blue); //底色 g2d.setColor(Color.white); g2d.fillRect(0,0,image.getWidth(),image.getHeight()); g.setColor(Colo...
BufferedImage image = new BufferedImage(X,Y, BufferedImage.TYPE_INT_RGB);
Graphics g = image.getGraphics();
Graphics2D g2d= (Graphics2D)g;
g2d.setBackground(Color.blue);
//底色
g2d.setColor(Color.white);
g2d.fillRect(0,0,image.getWidth(),image.getHeight());
g.setColor(Color.black);
g.drawLine(30,480-30,30,480-440);
g.drawLine(30,480-30,530,480-30);
JPEGImageEncoder encoder =JPEGCodec.createJPEGEncoder(out1);
encoder.encode(image);
这样是可以画出图来,可是我的问题是,当这个页面还有其它内容时,应该怎么办呢?
比如加些文字链接什么的?!
Graphics g = image.getGraphics();
Graphics2D g2d= (Graphics2D)g;
g2d.setBackground(Color.blue);
//底色
g2d.setColor(Color.white);
g2d.fillRect(0,0,image.getWidth(),image.getHeight());
g.setColor(Color.black);
g.drawLine(30,480-30,30,480-440);
g.drawLine(30,480-30,530,480-30);
JPEGImageEncoder encoder =JPEGCodec.createJPEGEncoder(out1);
encoder.encode(image);
这样是可以画出图来,可是我的问题是,当这个页面还有其它内容时,应该怎么办呢?
比如加些文字链接什么的?!
|
用servlet画图,就用你的办法,
在HTML页面里
就可以了,应该没问题
我没试过,你试一下,我决的应该可以,不性就用servlet
在HTML页面里
就可以了,应该没问题
我没试过,你试一下,我决的应该可以,不性就用servlet