作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想将图片(32 位深度,透明)从 TImageList
加载到 TImage
。标准方法是ImageList.GetBitmap(Index, Image.Picture.Bitmap);
。但是 GetBitmap
方法不适用于透明度,因此我总是得到不透明的位图。
最佳答案
解决方法相当简单 - ImageList 提供了另一种方法,GetIcon
,它可以在透明的情况下正常工作。加载透明图像的代码是:
ImageList.GetIcon(Index, Image.Picture.Icon);
并且不要忘记设置正确的 ImageList 属性:
ImageList.ColorDepth:=cd32bit;
ImageList.DrawingStyle:=dsTransparent;
关于delphi - 如何从ImageList加载透明图像?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11600044/
我是一名优秀的程序员,十分优秀!