Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Delphi. Convert Bitmap image to 2D Array

I have a gif image of 80x40 pixels. The color palette of this image consists of a few similar colors that have different numbers in the palette. How can I build a 2d array where the cell at x,y will be a number of the color in the palette?

like image 557
Yazon2006 Avatar asked Oct 21 '22 06:10

Yazon2006


1 Answers

TGifImage has such an array built in, so just make use of it:

var 
  Gif:TGifImage;
  PaletteIndex : byte;
begin
  Gif := TGifImage.Create;

  // ... load your stuff here ...

  // TGifImage has an Images property, which is probably only interesting if you're dealing with animations, so just take the first image.
  PaletteIndex := Gif.Images[0].Pixels[0,0]; // palette index for top-left pixel 

  // Now, to get the actual TColor for that pixel, you could do this:
  Self.color := Gif.Images[0].ColorMap.Colors[PaletteIndex];

end;
like image 55
Wouter van Nifterick Avatar answered Oct 30 '22 18:10

Wouter van Nifterick