如何将资源文件附加到现有的可执行文件?
我有一个资源文件(.RES),我想将其添加到现有的可执行文件中,而无需重新编译和使用 IDE!是否可以?
编辑
那么如何提取资源文件呢?
I have a resource file(.RES) and i want to add it into an existing executable file without recompiling and using the IDE! is it possible?
Edit
And how to extract the resource file?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
如果您的问题是,是否可以将资源添加到现有的 exe 文件中,是的,这是可能的。为此,您必须使用
UpdateResource
函数可以添加、删除或替换可移植可执行 (PE) 文件中的资源
。更新
这里有一个示例代码
If your question is, if you can add a resource to a existing exe file, yes it is possible. To do this you must use the
UpdateResource
function which canadd, delete, or replace a resource in a portable executable (PE) file
.update
Here you have a sample code
您可以使用 Colin Wilson 出色的资源实用程序。
我正在使用这个简单的控制台应用程序使用他的工具将资源添加到可执行文件:
You can use Colin Wilson's excellent Resource Utilities.
I'm using this simple console application to add a resource to an executable using his tools:
这是我的答案:(谢谢 PRUZ)
参考:http://www.delphi3000.com
This is my answer : (Thank you PRUZ)
Reference : http://www.delphi3000.com