Delphi:32 位图像在 Glass Form 上无法正确显示
我在 TImage 中有一个 PNG(32 位)图像。表格有一个玻璃框架。图片的背景是黑色的,不透明。如何修复它?
德尔福 2010。
谢谢。
I have a PNG (32-bit) image in a TImage. A form has a Glass Frame. Picture's background is black, not transparent. How to fix it?
Delphi 2010.
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
作为解决方法,您可以将 png 图像的位更改为 32。
检查此示例
,左侧图像是 8 位的 PNG,另一个是 32 位的。
As workaround you can change the bits of your png image to 32.
Check this sample
the left image is a PNG of 8 bits and the other is of 32 bits.
您应该忘记 TImage,因为它无法正确处理位块传送。您需要使用 GDI+ 在窗体上手动绘制图像。这只是因为“玻璃”。如果您将其保留在 TImage 上(或者实际上显示在其中的 TGraphic!),“背景”(玻璃)将被复制到内存中,并在其上组成一个透明图形(png?),并将其传输回他形成。不幸的是,当你将其恢复时,“背景”(玻璃)会变成黑色。
因此,使用 GDI+(google 一下)并使用 bitmap.handle 进行 blt。确保位图是透明的(即 32 位并设置了适当的属性)。
顺便说一句,与玻璃上的字体相同。您必须自己绘制东西(也许来自自定义组件?)。不过,您已经可以找到一些可以执行此操作的组件...例如 http://development.mwcs.de /glowlabel.html。
You should forget about the TImage as it won't handle the blit right. You need to use GDI+ to manually draw the image on your form. That's only because of the "glass". IF you leave it up the the TImage (or actually the TGraphic displayed in it!), the "background" (glass) will be copied into memory and onto that, a transparant graphic (png?) will be composed, and blitted back tot he form. Unfortunately, the "background" (the glass) will turn out to be black when you blt it back.
So, use GDI+ (google it) and blt using the bitmap.handle. Make sure the bitmap is transparent (i.e. 32bits and the appropriate properties set).
Same with fonts on glass, btw. You have to draw stuff yourself (maybe from a custom component?). You can find a few components that do this already, though... Like http://development.mwcs.de/glowlabel.html.