从 .EXE 中提取 .PNG?

发布于 2024-10-20 04:26:05 字数 142 浏览 1 评论 0原文

我一直在想如何从 .exe 窗口文件的图标中提取图像。 GD 有没有一种简单的方法来做到这一点?

我认为步骤是:

  • 从 .exe 中提取 .ico
  • 将 .ico 转换为 .PNG

I have always thought how to extract an image from the icon of a .exe window file.
Is there an easy way to do it maybe with GD?

I think the step would be:

  • extract .ico from .exe
  • convert .ico in .PNG

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

凌乱心跳 2024-10-27 04:26:05

图标是一个相当复杂的野兽。转换为 PNG 并不容易,因为:

  • 一个 .exe 中可能有多个图标;
  • 一个图标内可以有多个图像,具有不同的大小和颜色深度;
  • 图像可以通过多种方式压缩;
  • 这些图像具有位掩码(使得反转背景颜色等效果成为可能),而 PNG 中没有相应的位掩码。

据我所知GD不支持图标格式。 Imagemagick 似乎,也许你可以使用它。否则您可能需要编写自己的图标提取器。

An icon is a fairly complex beast. Converting to a PNG will not be easy, because:

  • There can be several icons inside a single .exe;
  • There can be several images inside a single icon, with different sizes and color depths;
  • The images can be compressed in several ways;
  • The images have bitmasks (making such effects as inverting background colors possible), which have no equivalent in PNG.

As far as I'm aware GD does not support icon format. Imagemagick seems to, maybe you can use that. Otherwise you might need to write your own icon extractor.

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