首页 > Windows开发 > 详细

e595. Drawing an Image

时间:2018-09-06 10:28:12      阅读:125      评论:0      收藏:0      [点我收藏+]

See also e575 The Quintessential Drawing Program and e594 Reading an Image or Icon from a File.

    public void paint(Graphics g) {
        // Draw an Image object
        int x = 0;
        int y = 0;
        g.drawImage(image, x, y, this);
    
        // Draw an Icon object
        x = 0;
        y = 100;
        icon.paintIcon(this, g, x, y);
    }

 

Related Examples

e595. Drawing an Image

原文:https://www.cnblogs.com/borter/p/9596075.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!