Re: Converting a GDI+ 24-bit RGB Bitmap to an Indexed Format Bitmap

Tech Tip: Click here to run a free scan for Windows Errors and optimize PC performance



Hello;

Can you point me to a code sample that creates a new Gdipluss::Bitmap using
the Bitmap::FromBITMAPINFO() method?

First, I created and populated a new palette and an array of indexed pixel
data.

Then, I created a BITMAPINFO structure with the imbedded new palette (note
that the bitmap header is a v4 header). I call Bitmap::FromBITMAPINFO()
method to create the new GDI+ "indexed" Bitmap (is successful). However,
when I attempt to save the Bitmap to a file, the Bitmap::Save(WCHAR*
filename, CLSID* clsEncoder) fails; the LastErrorStatus is 7 (Win32Err);
GetLastError is 1784 (ERROR_INVALID_USER_BUFFER, The supplied user buffer is
not valid for the requested operation.).

The BITMAPINFO header is setup as follows:
ZeroMemory(lpBI, cbBI);
lpBI->bmiHeader.bV4Size = sizeof(BITMAPV4HEADER);
lpBI->bmiHeader.bV4Width = pSrcBitmap->GetWidth();
lpBI->bmiHeader.bV4Height = (pLockedBM->Stride < 0) ?
pSrcBitmap->GetHeight() : (pSrcBitmap->GetHeight() * -1);
lpBI->bmiHeader.bV4Planes = 1;
lpBI->bmiHeader.bV4BitCount = 8;
lpBI->bmiHeader.bV4V4Compression = BI_RGB;

Is a stride necessary with indexed pixel data? I currently allocate (Width
x Height) bytes for the Pixel Data array.

Thanks in advance;

Al

"Michael Phillips, Jr." <mphillips53@xxxxxxxxxxxxxxx> wrote in message
news:OuuGSRZyHHA.1568@xxxxxxxxxxxxxxxxxxxxxxx
I would suggest computing a new Palette using one of the many color
reduction algorithms available.
MSDN has the code for the octree quantization algorithm.

Once you have a new palette, create a new bitmap with the same width and
height of your resized image.
Use the original indexed pixel format for this new image.

Since your resized image is 24bpp, you need to translate the 3 colors in
each pixel into an index of your new color palette.
If you create a logical palette via GDI, you may use the function
GetNearestPaletteIndex to get the new index for the pixel.
You use Lockbits, to cycle through each 24bpp pixel and take the index
returned by GetNearestPaletteIndex and set the
corresponding pixel in your indexed image to this index.

.
"Alain M. Dube" <adube@xxxxxxxxxxxxxxxxxxx> wrote in message
news:%23jEldIYyHHA.5024@xxxxxxxxxxxxxxxxxxxxxxx
Hello;

Can someone shed some light on how I can (using GDI+ and/or GDI) convert
a
Bitmap whose pixel format is PixelFormat24bppRGB to a bitmap with any
variation of the PixelFormatIndexed pixel format? Note that the source
bitmap is "indexed" and converted to 24-bit RGB, then resized. No color
changes are made. Once completed, I'd like to return the bitmap to it's
original pixel format.

In theory, the source bitmap's palette should be reusable. I thought
that
it would be a simple matter of iterating through the 24-bit RGB bitmap
data,
one pixel at a time, attempting to locate the pixel's color in the source
bitmap's palette. The colors values to not seem to match at all. The
color
palette values I see are actually in the source bitmap file. if I save
the
24-bit RGB bitmap to disk, the colors that I see as bitmap pixel data
(while
stepping througnb the code) are present in the saved bitmap file. The
color
values in the palette and in the 24-bit RGB data seem to be incompatible.

Thanks in advance;

Alain.







.



Relevant Pages

  • Re: Converting a GDI+ 24-bit RGB Bitmap to an Indexed Format Bitmap
    ... I would suggest computing a new Palette using one of the many color ... Use the original indexed pixel format for this new image. ... Bitmap whose pixel format is PixelFormat24bppRGB to a bitmap with any ... it would be a simple matter of iterating through the 24-bit RGB bitmap ...
    (microsoft.public.win32.programmer.gdi)
  • Re: Converting a GDI+ 24-bit RGB Bitmap to an Indexed Format Bitmap
    ... The easiest method of creating a gdiplus bitmap is to create a memory stream ... I created and populated a new palette and an array of indexed pixel ... Is a stride necessary with indexed pixel data? ...
    (microsoft.public.win32.programmer.gdi)
  • Re: Unexpected Stripes In Bitmap
    ... sure how to get around having the local bitmap file as that's how I'm ... currently getting access to the 16 color palette. ... If you want to store the index, one index (i.e. one pixel) per byte, then   ...
    (microsoft.public.dotnet.languages.csharp)
  • Re: Unexpected Stripes In Bitmap
    ... currently getting access to the 16 color palette. ... There was a recent thread discussing how to create a palette from scratch. ... You can use Google to find it, but the gist is that you start with a Bitmap of the appropriate bit-depth, and then get the palette from that Bitmap. ... What pixel format should I ...
    (microsoft.public.dotnet.languages.csharp)
  • Re: Bitmap -> GIF/PNG/JPG
    ... colour on the bitmap, and I want to build a GIF from it (along with some ... take a bitmap input. ... If the pixel data are in an array it's still faster than drawing ... If your pixel data are in a file you may be able to simply describe it ...
    (comp.lang.ruby)