如何使用 Delphi 将 WMF 图片转换为 GIF 或 PNG?
有没有办法将 WMF 图片转换为 GIF 或 PNG< /a> 使用 Delphi 2009(或更高版本)运行时库?
Is there a way to convert a WMF picture to GIF or PNG with the Delphi 2009 (or newer) run time libraries?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
PNG 并不难,Delphi 2009 包含 TPNGImage。
对于 GIF,您可以使用 GDI+ 或 TGifImage 组件...
以下是代码:
PNG is not that hard, Delphi 2009 includes TPNGImage.
For GIF you can use GDI+ or the TGifImage component...
Here's the code :