e595. Drawing an Image
2021-07-12 18:13
标签: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. e595. Drawing an Image 标签:his strong amp cells related pre cell graphic idt 原文地址:https://www.cnblogs.com/borter/p/9596075.html 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
文章链接:http://soscw.com/index.php/essay/104277.html