如何让 PNG 在 D2009 中工作?

发布于 2024-07-08 01:57:02 字数 155 浏览 4 评论 0原文

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 技术交流群。

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

发布评论

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

评论(2

北方的巷 2024-07-15 01:57:02

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

穿越时光隧道 2024-07-15 01:57:02

您可以将 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.

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