Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have a function which resizes a bitmap. It's such a "bread and butter" operation that I simply copied it from another project:

private Bitmap ResizeBitmap(Bitmap orig)
{
    Bitmap resized = new Bitmap(this.Xsize, this.Ysize, PixelFormat.Format16bppGrayScale);
    resized.SetResolution(orig.HorizontalResolution, orig.VerticalResolution);
    using (Graphics g = Graphics.FromImage(resized))
    {
        g.DrawImage(orig, 0, 0, resized.Width, resized.Height);
    }
    return resized;
}

However, I kept getting OutOfMemory exceptions on Graphics g = Graphics.FromImage(resized).

I'm aware that, when it comes to GDI, OutOfMemory exceptions usually mask other problems. I'm also very aware that the image I'm trying to resize isn't large and that (as far as I'm aware) the GC should have no problem collecting instances as they leave the current scope.

Anyway, I've been playing around with it for a bit now and it currently looks like this:

private Bitmap ResizeBitmap(Bitmap orig)
{
    lock(orig)
    {
        using (Bitmap resized = new Bitmap(this.Xsize, this.Ysize, PixelFormat.Format16bppGrayScale))
        {
            resized.SetResolution(orig.HorizontalResolution, orig.VerticalResolution);
            using (Graphics g = Graphics.FromImage(resized))
            {
                g.DrawImage(orig, 0, 0, resized.Width, resized.Height);
            }
            return resized;
        }
    }
}

But now I'm getting an InvalidOperation exception on resized.SetResolution(orig.HorizontalResolution, orig.VerticalResolution);

I'm sick of poking around in the dark. Is there a better way to trouble shoot these pesky GDI operations?

share|improve this question
Just wondering - are you trying to use GDI+ in an ASP.NET application? We were doing this for a while until we found out that it is not supported and will crash (sometimes). – GarethOwen Oct 2 '12 at 15:32
@GarethOwen Nope, this is a winforms app. – Tom Wright Oct 2 '12 at 15:37

1 Answer

From Graphics.FromImage Method definition:

If the image has an indexed pixel format, this method throws an exception with the message, "A Graphics object cannot be created from an image that has an indexed pixel format."

Though exception you get is really misleading, you are trying to execute unsupported operation. It looks like you need to resize this bitmap as raw memory block, and not as GDI+ bitmap.

share|improve this answer
Just checking - Format16bppGrayScale is considered an indexed pixel format? – Tom Wright Oct 2 '12 at 15:42
Yes, all grayscale images have actually indexed format, with grayscale palette (0,0,0), (1,1,1) ... Format16bppGrayScale is mentioned as unsupported in Graphics.FromImage MSDN topic. – Alex Farber Oct 2 '12 at 17:01
Thanks. This solves the immediate problem, but I'm going to leave the question open for a while as I'd like to hear about general debugging techniques. – Tom Wright Oct 3 '12 at 12:45

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.