2006年4月14日
最近在弄swing,需要由JComponent生成BufferedImage,在CSDN上发现一个好例子。下面是范例:
Rectangle rect = comp.getBounds();
BufferedImage bufImage = new BufferedImage(rect.width,
rect.height,
BufferedImage.TYPE_INT_RGB);
Graphics g = bufImage.getGraphics();
g.translate(-rect.x, -rect.y);
comp.paint(g); 这样,JComponent中的图像就保存到BufferedImage中了。
原文的链接:
http://dev.csdn.net/article/13/13531.shtm
posted @
2006-04-14 23:41 小米 阅读(1357) |
评论 (1) |
编辑 收藏
小米,生活在深圳,专注于Java,主要从事数据库和网页编程。现在在学习着Hibernate和Spring。喜欢游戏、音乐和台球。联系方式:georgehill@21cn.com
|
|
26 | 27 | 28 | 29 | 30 | 31 | 1 |
2 | 3 | 4 | 5 | 6 | 7 | 8 |
9 | 10 | 11 | 12 | 13 | 14 | 15 |
16 | 17 | 18 | 19 | 20 | 21 | 22 |
23 | 24 | 25 | 26 | 27 | 28 | 29 |
30 | 1 | 2 | 3 | 4 | 5 | 6 |
常用链接
留言簿(27)
随笔分类
随笔档案
文章分类
文章档案
我的朋友们
我的链接
搜索
积分与排名
最新评论
阅读排行榜
评论排行榜