游子日月长

笑渐不闻声渐悄,多情却被无情恼!

导航

改变图象调色板

var
 Bitmap: TBitmap;
begin

 Bitmap:=TBitmap.Create;
 Bitmap.LoadfromFile({'Whatever.bmp'});

 With Image2.Picture.bitmap do
 Begin
  Width:=Bitmap.Width;
  height:=Bitmap.Height;
  Palette:=Bitmap.Palette;
  Canvas.draw(0,0,bitmap);
  Refresh;
 end;
end;
如果要往窗体上画
Canvas.Draw(0,0,Bitmap);
SelectPalette(Form1.Canvas.handle,Bitmap.Palette,True);
RealizePalette(Form1.Canvas.Handle);

 

posted on 2017-02-07 12:37  游子日月长  阅读(127)  评论(0编辑  收藏  举报