[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Newsgroup Home]
[news.eclipse.newcomer] Loading incomplete images

Hi All,

I'm writing an plugin for Povray, a raytracer programm caclulating photorealistic images.
My plugin should display the rendering progress by displaying the image beeing rendered so far, thus displaying incomplete images.


It looks like the image loader is waiting til the image rendering is completed (receiving the EOF from the stream), then loading the image.

ImageLoader loader = new ImageLoader();		
ImageData[] data = loader.load(filename);
image = new Image(scroller.getDisplay(), data[0]);


Is there a way to load the incomplete image file?

Thanks a lot!

Best regards,
Wolf