gpt4 book ai didi

delphi - 如何访问 TPicture.Graphic 的调色板?

转载 作者:行者123 更新时间:2023-12-02 12:49:47 25 4
gpt4 key购买 nike

我在网上搜索了几个小时,但找不到任何有关如何从 TPicture.Graphic 获取调色板的信息。我还需要获取颜色值,以便可以将这些值传递到 TStringList 以填充颜色选择器中的单元格。

这是我目前拥有的代码:

procedure TFormMain.OpenImage1Click( Sender: TObject );
var
i: integer;
S: TStringList;
AColor: TColor;
AColorCount: integer;
N: string;
Pal: PLogPalette;
HPal: hPalette;
begin
if OpenPictureDialog1.Execute then
begin
Screen.Cursor := crHourGlass;
try
Pal := nil;
try
S := TStringList.Create;
ABitmap.Free; // Release any existing bitmap
ABitmap := TBitmap.Create;
Image1.Picture.LoadFromFile( OpenPictureDialog1.Filename );
ABitmap.Canvas.Draw( 0, 0, Image1.Picture.Graphic );
GetMem( Pal, Sizeof( TLogPalette ) + Sizeof( TPaletteEntry ) * 255 );
Pal.palversion := $300;
Pal.palnumentries := 256;
for i := 0 to 255 do
begin
AColor := Pal.PalPalEntry[ i ].PeRed shl 16 + Pal.PalPalEntry[ i ].PeGreen shl 8 + Pal.PalPalEntry[ i ].PeBlue;
N := ColorToString( AColor );
S.Add( N );
end;
HPal := CreatePalette( Pal^ );
ABitmap.Palette := HPal;
Memo1.Lines := S;
finally; FreeMem( Pal ); end;
S.Free;
finally; Screen.Cursor := crDefault; end;
end;
end;

我正在使用 Image1.Picture.Graphic 中包含的图像绘制到 ABitmap 的 Canvas 上,因为我想支持所有 TPicture 图像类型,例如 Bitmap、Jpeg、PngImage 和 GIfImg。

如有任何帮助,我们将不胜感激。我走在正确的道路上还是需要一些不同的东西?

最佳答案

您发布的代码实际上没有任何作用。您要么必须从位图中读回调色板,然后才能访问它,要么需要创建一个调色板并将其分配给位图 - 您的代码两者都不会。

以下代码或多或少是您的代码,其中 fBitmapfBitmapPalEntries 字段用于操作结果。我评论了我更改的所有行:

  if OpenPictureDialog1.Execute then
begin
Screen.Cursor := crHourGlass;
try
Pal := nil;
try
S := TStringList.Create;
fBitmap.Free; // Release any existing bitmap
fBitmap := TBitmap.Create;
// if you want a 256 colour bitmap with a palette you need to say so
fBitmap.PixelFormat := pf8bit;
Image1.Picture.LoadFromFile( OpenPictureDialog1.Filename );
fBitmap.Canvas.Draw( 0, 0, Image1.Picture.Graphic );
// access the palette only if bitmap has indeed one
if fBitmap.Palette <> 0 then begin
GetMem( Pal, Sizeof( TLogPalette ) + Sizeof( TPaletteEntry ) * 255 );
Pal.palversion := $300;
Pal.palnumentries := 256;
// read palette data from bitmap
fBitmapPalEntries := GetPaletteEntries(fBitmap.Palette, 0, 256,
Pal.palPalEntry[0]);
for i := 0 to fBitmapPalEntries - 1 do
begin
AColor := Pal.PalPalEntry[ i ].PeRed shl 16
+ Pal.PalPalEntry[ i ].PeGreen shl 8
+ Pal.PalPalEntry[ i ].PeBlue;
N := ColorToString( AColor );
S.Add( N );
end;
// doesn't make sense, the palette is already there
// HPal := CreatePalette( Pal^ );
// fBitmap.Palette := HPal;
Memo1.Lines := S;
end;
finally; FreeMem( Pal ); end;
S.Free;
finally; Screen.Cursor := crDefault; end;
end;

支持较少条目的调色板很容易,您只需在知道有多少条目后重新分配内存,例如

ReallocMem(Pal, SizeOf(TLogPalette) + SizeOf(TPaletteEntry) * (fBitmapPalEntries - 1));

仅当您想以 pf4Bitpf8Bit 格式编写位图时,才需要创建调色板。您可能需要通过减少颜色数量(抖动)来确定调色板条目的 16 或 256 种颜色。然后,您将使用颜色值填充调色板颜色槽,最后使用我从代码中注释掉的两行。您必须确保位图的像素格式和调色板条目的数量匹配。

关于delphi - 如何访问 TPicture.Graphic 的调色板?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1240673/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com