Delphi,处理 png 和位图的 ImageList
最近我发现了 TPngImageList 组件( http://cc.embarcadero.com/Item/26127 )这非常好,但它处理仅 png图像...我想要一些图像列表,允许将png图像与位图组合,因为我使用了大量位图,并且我不想花下周的时间将这些位图转换为 png,但我希望能够为即将推出的功能添加 PNG 图像... 到目前为止,如果我找不到任何替代品,我会使用 GIMP 将 PNG 转换为位图。
Recently I've found TPngImageList component ( http://cc.embarcadero.com/Item/26127 ) which is very good, but it handles only png images ... I'd like to have some imagelist that allows combining of pngimages with bitmaps, as I'm using lots of bitmaps, and I do not want to spend coming week converting those bitmaps to pngs, yet I want to use be able to add PNG images for coming features ...
So far I used to convert the PNGs to bitmaps using GIMP if I wasn't able to find any replacement.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
png2bmp 和 bmp2png 可以帮助您自动命令行转换这些图像文件。
从 Delphi 2009 开始,TImageList 原生支持 PNG 图像,Nick Hodges 宣布。
png2bmp and bmp2png come to the rescue for automated commandline conversion of those image files.
As of Delphi 2009, the TImageList supports PNG images natively as Nick Hodges announced.
这并不能回答您的问题,但如果您确实需要将它们全部转换,我可以建议精彩的 ImageMagik< /a> 通过 GIMP,它将使您的生活变得超级轻松,并通过一个简单的脚本转换您的所有文件。
This doesnt answer your question, but if you do need to convert them all may I suggest the wonderful ImageMagik over GIMP, it will make your life super easy and convert all your files with one easy script.
Delphi 2009 及更高版本中的 TImageList 组件可处理 PNG 和 BMP 文件等。
The TImageList component in Delphi 2009 and up handles PNG and BMP files, among many others.