码迷,mamicode.com
首页 > Windows程序 > 详细

e595. Drawing an Image

时间:2018-09-06 11:05:55      阅读:187      评论:0      收藏:0      [点我收藏+]

标签:his   strong   amp   cells   related   pre   cell   graphic   idt   

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

标签:his   strong   amp   cells   related   pre   cell   graphic   idt   

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

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