0

当我使用以下代码时:

    public void paint(Graphics g){

    //Displays version number and name.
    g.setFont(new Font("Courier", Font.PLAIN, 10));
    g.drawString("DCoder " + execute.Execute.version, 2, 10);

    //Displays logo in center.
    g.drawImage(logo, centerAlign(logo.getWidth(null)), 50, this);


}

private int width(){
    //Gets and returns width of applet.
    int width = getSize().width;
    return width;
}
private int height(){
    //Gets and returns height of applet.
    int height = getSize().height;
    return height;
}

private int centerAlign(int obWidth){
    int align = (width()-obWidth)/2;
    return align;
}

在我的 Java Applet 中,直到我调用 repaint() (通过调整 Applet Viewer 窗口的大小),图像才会显示?为什么图片不显示?

4

2 回答 2

2

因此必须处理异步加载的图像。

logo.getWidth(this); // Indicate asynchronous ImageObserver

...

@Override
public boolean imageUpdate(Image img,
              int infoflags,
              int x,
              int y,
              int width,
              int height) {
    if ((infoflags & ImageObserver.ALLBITS) == ImageObserver.ALLBITS) {
        // The image is entirely read.
        repaint();
    }
}

异步读取图像时,getWidth(null)将返回 0 直到确定宽度等。因此,需要小心一点。


解释

加载图像被设计为异步完成。图像已经可用,但在被读取之前getWidth和/或getHeight为-1。您可以将 ImageObserver 传递给 getWidth/getHeight,然后在读取图像时通知它。现在 JApplet 已经是一个 ImageObserver,所以你可以通过this.

读取代码将通过/注册的 ImageObserver 的方法 imageUpdate 来表示更改;宽度是已知的,即 SOMEBITS(= 不是全部),所以人们已经可以绘制预览,就像在 JPEG 像素化预览中一样。

这种异步技术是在早期需要的慢速互联网。

如果您想更简单地阅读图像,请使用ImageIO.read(...).

于 2012-06-05T15:37:04.960 回答
1

为什么图片不显示?

很可能是因为它是使用异步方法加载的。

于 2012-06-05T15:27:32.947 回答