Load resource as byte array programmaticaly in C++(在 C++ 中以编程方式将资源加载为字节数组)
问题描述
这里是 C# 的相同问题:以字节数组编程方式加载资源
Here the same question for C#: load resource as byte array programmaticaly
所以我有一个资源(只是二进制文件 - 用户数据,并不重要).我需要获取一个指向表示此资源的字节数组的指针,如何执行此操作?资源位于 vs2010(win32 控制台项目)的 Resource Files 中.我想我需要使用winapi的FindResource
、LoadResource
和LockResource
函数.
So I've got a resource (just binary file - user data, dosen't really matter). I need to get a pointer to byte array representing this resource, how to do this ? Resource located in Resource Files of vs2010 (win32 console project). I think i need to use FindResource
, LoadResource
and LockResource
function of winapi.
推荐答案
要获取资源的字节信息,第一步是使用FindResource 或 FindResourceEx.然后,使用加载资源LoadResource.最后,使用 LockResource 获取数据地址并访问 SizeofResource 字节.以下示例说明了该过程:
To obtain the byte information of the resource, the first step is to obtain a handle to the resource using FindResource or FindResourceEx. Then, load the resource using LoadResource. Finally, use LockResource to get the address of the data and access SizeofResource bytes from that point. The following example illustrates the process:
HMODULE hModule = GetModuleHandle(NULL); // get the handle to the current module (the executable file)
HRSRC hResource = FindResource(hModule, MAKEINTRESOURCE(RESOURCE_ID), RESOURCE_TYPE); // substitute RESOURCE_ID and RESOURCE_TYPE.
HGLOBAL hMemory = LoadResource(hModule, hResource);
DWORD dwSize = SizeofResource(hModule, hResource);
LPVOID lpAddress = LockResource(hMemory);
char *bytes = new char[dwSize];
memcpy(bytes, lpAddress, dwSize);
为简洁起见,当然省略了错误处理,您应该检查每个调用的返回值.
Error handling is of course omitted for brevity, you should check the return value of each call.
这篇关于在 C++ 中以编程方式将资源加载为字节数组的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:在 C++ 中以编程方式将资源加载为字节数组
基础教程推荐
- 使用从字符串中提取的参数调用函数 2022-01-01
- 在 C++ 中循环遍历所有 Lua 全局变量 2021-01-01
- 从 std::cin 读取密码 2021-01-01
- 如何“在 Finder 中显示"或“在资源管理器中显 2021-01-01
- 如何在不破坏 vtbl 的情况下做相当于 memset(this, ...) 的操作? 2022-01-01
- 管理共享内存应该分配多少内存?(助推) 2022-12-07
- 为什么语句不能出现在命名空间范围内? 2021-01-01
- 为 C/C++ 中的项目的 makefile 生成依赖项 2022-01-01
- 如何使图像调整大小以在 Qt 中缩放? 2021-01-01
- Windows Media Foundation 录制音频 2021-01-01