我可以强制 Delphi 6 TImageList 位图将其透明像素绘制为某种颜色吗?

发布于 2024-12-20 20:56:58 字数 319 浏览 3 评论 0原文

我有一个 Delphi 6 应用程序,所有者可以在 TListBox 行中绘制图标以及一些文本。 TListBox 的样式设置为 lbOwnerDrawVariable。我遇到的问题是选择一个项目时。列表框用于更改所选行的背景颜色的突出显示颜色使图标看起来很糟糕,因为图标具有透明像素(我的假设基于可见证据),并且这些像素被更改为背景颜色,从而破坏图像。有没有一种简单的方法可以强制透明像素绘制某种颜色,这样我就可以消除这个问题?我正在使用 TImageList.Draw() 方法在 TListBox 画布上绘制图标。

I have a Delphi 6 application that owner-draws icons in a TListBox row along with some text. The TListBox's Style is set to lbOwnerDrawVariable. The problem I'm having is when an item is selected. The highlight color used by the list box to change the background color of the selected row is making the icon look terrible because the icon has transparent pixels (my assumption based on the visible evidence), and those pixels are changed to the background color thereby ruining the image. Is there an easy way to force the transparent pixels to be drawn a certain color so I can eliminate this problem? I am using the TImageList.Draw() method to draw the icon on the TListBox canvas.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

枫以 2024-12-27 20:56:58

您可以使用 Draw 方法,将 DrawingStyle 设置为“dsNormal”,并将您希望用作背景的任何颜色设置为 BkColor

ImageList1.BkColor := clHighlight;
ImageList1.Draw(Canvas, 0, 0, 0, dsNormal, itImage);

如果 Delphi 6 没有 'DrawingStyle' 的 Draw 重载,那么:

ImageList1.BkColor := clHighlight;
ImageList1.DrawingStyle := dsNormal;
ImageList1.Draw(Canvas, 0, 0, 0);

You can use the Draw method with DrawingStyle set to 'dsNormal' and setting whatever color you wish to use as the background to BkColor:

ImageList1.BkColor := clHighlight;
ImageList1.Draw(Canvas, 0, 0, 0, dsNormal, itImage);

If Delphi 6 does not have the Draw overload with 'DrawingStyle', then:

ImageList1.BkColor := clHighlight;
ImageList1.DrawingStyle := dsNormal;
ImageList1.Draw(Canvas, 0, 0, 0);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文