Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.

share|improve this question

2 Answers

up vote 4 down vote accepted

A good option would be java.awt.MediaTracker. There's a good code example in the API documentation. In short, you create a MediaTracker object to track images for a component, tell it which images you want to track, and then call tracker.waitForID(n) which will block until the specified image has finished loading.

Obviously, you need to keep this out of the event thread--but you knew that. :)

share|improve this answer
1  
Looks like this is of no use either since I don't have a Component. – Jens Schauder Nov 27 '10 at 13:31

Use a javax.imageio.event.IIOReadProgressListener and override its imageComplete method instead of an ImageObserver.

This is assuming you can change the code to use a javax.imageio.ImageReader to actually read it (created using one of ImageIO's static methods).

share|improve this answer
I don't think I can use it. I'll get an Image from an unknown source and need to make sure that it is complete before starting my work – Jens Schauder Nov 23 '10 at 21:00

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.