我可以强制 Delphi 6 TImageList 位图将其透明像素绘制为某种颜色吗?
我有一个 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用
Draw
方法,将DrawingStyle
设置为“dsNormal”,并将您希望用作背景的任何颜色设置为BkColor
:如果 Delphi 6 没有 'DrawingStyle' 的
Draw
重载,那么:You can use the
Draw
method withDrawingStyle
set to 'dsNormal' and setting whatever color you wish to use as the background toBkColor
:If Delphi 6 does not have the
Draw
overload with 'DrawingStyle', then: