如何使图像显示在 Java Swing Applet 中

发布于 2024-10-20 17:46:53 字数 54 浏览 1 评论 0原文

如何使 Image 显示在 Java Swing Applet 中?

How do I make an Image show up in a Java Swing Applet?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

暗恋未遂 2024-10-27 17:46:53

最简单的方法是将其作为图标添加到您放在 GUI 上的 JLabel 中。

http://download .oracle.com/javase/6/docs/api/javax/swing/JLabel.html#JLabel(javax.swing.Icon)

The simplest way is to add it as an Icon to a JLabel that you put on your GUI.

http://download.oracle.com/javase/6/docs/api/javax/swing/JLabel.html#JLabel(javax.swing.Icon)

上课铃就是安魂曲 2024-10-27 17:46:53

这是您需要的概述

class myApplet extends JApplet {
        private BufferedImage image;

        myApplet() {
            try {
                image = ImageIO.read(new File("insert image path here"));
            } catch (IOException ex) {
                // handle exception...
            }
        }

        @Override
        public void paint(Graphics g) {
            g.drawImage(image, 0, 0, null); 

        }
    }

Here's an outline of what you need

class myApplet extends JApplet {
        private BufferedImage image;

        myApplet() {
            try {
                image = ImageIO.read(new File("insert image path here"));
            } catch (IOException ex) {
                // handle exception...
            }
        }

        @Override
        public void paint(Graphics g) {
            g.drawImage(image, 0, 0, null); 

        }
    }
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文