如何让 PNG 在 D2009 中工作?
Delphi 2009 宣传的功能之一是 PNG 支持。 这很好,因为 Unicode 问题破坏了我之前使用的 pngimage.pas 库。 唯一的问题是,我找不到 Delphi 2009 版本。 有人知道它叫什么,以及将现有的基于 pngimage.pas 的代码迁移到新库有多困难吗?
One of Delphi 2009's advertised features was PNG support. That's great, because the Unicode issues break the pngimage.pas library I was using before. Only problem is, I can't find the Delphi 2009 version. Anyone know what it's called, and how difficult it is to migrate existing pngimage.pas-based code to the new library?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
Delphi 中的所有 VCL 图像支持都是通过 TImage 提供的。 如果要显示 PNG 图像,只需放置 TImage 控件,然后将 PNG 图像加载到 Picture 属性中即可。
如果你想在代码中操作PNG图像(即不显示它),那么你可以将
pngimage
添加到uses子句中,然后直接使用TPNGImage类。
在我的机器上,PNGImage.pas 位于:
C:\Program Files\CodeGear\RAD Studio\6.0\source\Win32\vcl\Imaging\PNGImage\pngimage.pas
All VCL image support in Delphi is provided via TImage. If you want to display a PNG image, simply drop a TImage control and then load a PNG image into the Picture property.
If you want to manipulate a PNG image in code (i.e., not display it) then you can add
pngimage
to your uses clause, and then use the TPNGImage class directly.
On my machine, PNGImage.pas is found at:
C:\Program Files\CodeGear\RAD Studio\6.0\source\Win32\vcl\Imaging\PNGImage\pngimage.pas
您可以将 png 图像读入 TImage 控件。
就像 gif、jpg、emf、wmf、bmp 一样。
不确定这是否是您想要的。
You can read png images into a TImage control.
Just like gif, jpg, emf, wmf, bmp.
Not sure if that's what you want.