vote up 2 vote down star

This code returns a thumbnail of an image loaded from a byte array. I'm trying to understand why the author is using 4 memory streams and if there is a simple way of rewriting this or if it is okay the way it is.

public Image GetThumbnail(int height, int width)
{
    //load the image from a byte array (imageData)
    using (MemoryStream mem = new MemoryStream(this.imageData))
    {
        // Create a Thumbnail from the image
        using (Image thumbPhoto = Image.FromStream(mem, 
            true).GetThumbnailImage(height, width, null, 
            new System.IntPtr()))
        {
            // Convert the Image object to a byte array
            using (MemoryStream ms = new MemoryStream())
            {
                thumbPhoto.Save(ms, System.Drawing.Imaging.ImageFormat.Jpeg);
                using (MemoryStream m = new MemoryStream(ms.ToArray()))
                {
                    return Image.FromStream(m, true);
                }
            }
        }
   }
}
flag

3 Answers

vote up 3 vote down check

He's actually only using 3 MemoryStreams here, but he needs to only use 2 (I think). You should be able to replace this code:

using (MemoryStream m = new MemoryStream(ms.ToArray()))                
{                    
    return Image.FromStream(m, true);                
}

with this:

ms.Seek(0, SeekOrigin.Begin);
return Image.FromStream(ms, true);

I think he created the third MemoryStream because the ms MemoryStream wasn't at the beginning.

link|flag
This did it. Thanks – Nick Masao Oct 23 at 9:57
vote up 0 vote down
public Image GetThumbnail(int height, int width)
{
    //load the image from a byte array (imageData)
    using (MemoryStream mem = new MemoryStream(this.imageData))
    {
        // Create a Thumbnail from the image
        using (Image thumbPhoto = Image.FromStream(mem, 
            true).GetThumbnailImage(height, width, null, 
            new System.IntPtr()))
        {
            return thumbPhoto;
        }
   }
}

i think this will be right

link|flag
1  
This misses the conversion to jpeg. – Henk Holterman Oct 22 at 16:05
1  
i think this method should be better names as GetThumbAndConverToJpeg :-) people not always converting to jpeg while getting thumbs – Trickster Oct 22 at 16:30
Right, but you can never rewrite a method based on it's name alone. – Henk Holterman Oct 23 at 10:21
vote up 1 vote down

I think the previous answers are missing that the author is forcing a conversion to jpeg.

link|flag
+1 Good catch. I didn't notice that part. My answer does keep that in, though. – MusiGenesis Oct 22 at 16:05
-1, should have been a comment under the specific answers. – Henk Holterman Oct 22 at 16:10

Your Answer

Get an OpenID
or

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