Right now I have an application that loads a bunch of thumbnail images into PictureBox controls. Sometimes over a hundred at a time. The images are created using Image.FromStream(MemoryStream), and the memory stream represents each JPG file.
Currently, as soon as I am calling Image.FromStream, I assign the reference to the picture box, then immediately after I Flush() and Dispose() the stream.
According to documentation, I should not release the stream until I'm done with the image. However, I have not had any errors doing this. My PictureBox controls can repaint themselves all day long with the thumbnail images even after the memory streams have long been disposed.
However, if I try to access these images in any way, such as calling the Save function, it throws an error.
If a Bitmap has a dependency on a memory stream or file stream, will it dispose of the source when you dispose of it? Or is this only when it creates the stream itself using Bitmap.FromFile?
Is disposing of the MemoryStream immediately like I am doing considered OK? The PictureBox must be caching the image in some way. I've never had an error because I don't need to touch the image once it has been set.
I also notice that it takes my PictureBoxes a long time to paint on their parent control. I am not sure if this is because I have too many controls, or because there is a delay the first time an image is painted in a PictureBox.
I know that when you create a new Bitmap with a file parameter, it doesn't actually load the file contents until it is first needed. My issue is, I don't want each OnPaint operation to be delayed by a file read, I want to make sure the data is preloaded before I try to paint the controls, otherwise I get flickering and slow painting.
Is there a good way to force an image to be preloaded? What are the discrepancies between Image.FromFile, Image.FromStream, new Bitmap(fileName), etc? Do any of these load all the bytes right away, or is it delayed until they are first needed?
Here's my code:
MemoryStream ms = new MemoryStream(bytes); // byte[] array
pictureBox.Image = Image.FromStream(ms);
ms.Flush();
ms.Dispose();