码迷,mamicode.com
首页 > 其他好文 > 详细

双缓存

时间:2014-11-05 22:59:46      阅读:188      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   for   sp   div   log   bs   new   

1 private Image offImage = new BufferedImage(800, 700, BufferedImage.TYPE_INT_RGB);//在内存中new一张图片出来
 1 public void paint(Graphics g) {
 2         Graphics offG = offImage.getGraphics();//得到内存图片的画笔
 3         super.paint(offG);
 4         for (Shape shape : shapes) {
 5             if (shape != null) {
 6                 shape.draw(offG);//把图形画到内存图片上
 7             }
 8         }
 9         g.drawImage(offImage,0,0, null);//把内存中的图片画到屏幕上
10     }

 

双缓存

标签:style   blog   color   for   sp   div   log   bs   new   

原文地址:http://www.cnblogs.com/f644135318/p/4077365.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!