The Java image API assumes asynchronous loading. Various methods take an ImageObserver as a parameter which might get informed once the image is completely loaded.
On the other hand some types of images (e.g. BufferedImages) don't use the ImageObserver and will never call it.
So how would code look that waits until an image is fully loaded?
I'd like to have a method like
public void waitUntilLoaded(Image img){
...
}
Which guarantees that the image is completely loaded when it returns.