views:

517

answers:

2

hi, i'm trying to edit the pixels of a 8bpp. Since this PixelFormat is indexed i'm aware that it uses a Color Table to map the pixel values. Even though I can edit the bitmap by converting it to 24bpp, 8bpp editing is much faster (13ms vs 3ms). But, changing each value when accessing the 8bpp bitmap results in some random rgb colors even though the PixelFormat remains 8bpp.

I'm currently developing in c# and the algorithm is as follows:

(C#)

1- Load original Bitmap at 8bpp

2- Create Empty temp Bitmap with 8bpp with the same size as the original

3-LockBits of both bitmaps and, using P/Invoke, calling c++ method where I pass the Scan0 of each BitmapData object. (I used a c++ method as it offers better performance when iterating through the Bitmap's pixels)

(C++)

4- Create a int[256] palette according to some parameters and edit the temp bitmap bytes by passing the original's pixel values through the palette.

(C#)

5- UnlockBits.

My question is how can I edit the pixel values without having the strange rgb colors, or even better, edit the 8bpp bitmap's Color Table?

Regards,

Pedro

A: 

Have you tried loading a System.Drawing.Image instead? That class gives you access to the colour palette. You can then wrap the System.Drawing.Image up as a System.Drawing.Bitmap once the palette is set.

I'm not sure how System.Drawing.BitMap.SetPixel() works with indexed coloured images. It could be it tries to map it to the closest colour in the palette.

Paul Ruane
Thanks for your answer. I know I can modify the bitmap's palette by changing the Bitmap's Palette property. But doing this is too slow. I was hoping that someone could tell me how to access the Color Table pointer so that I could modify it directly. SetPixel does not work and is also very sluggish.what i don't understand is why the pixel is assigned with a rgb color when i change it's value from 0 (black) to 100 (should be gray but is red).
Pedro Sá
+1  A: 

There is no need to move into C++ land or use P/Invoke at all; C# supports pointers and unsafe code perfectly fine; I may even hazard a guess that this is causing your problems.

The colors are likely coming from the default Palette. You'll find that changing the Palette shouldn't be slow at all. This is what I do to create a greyscale palette:

image = new Bitmap( _size.Width, _size.Height, PixelFormat.Format8bppIndexed);
ColorPalette pal = image.Palette;
for(int i=0;i<=255;i++) {
    // create greyscale color table
    pal.Entries[i] = Color.FromArgb(i, i, i);
}
image.Palette = pal; // you need to re-set this property to force the new ColorPalette
David