数组[字节] 到 HBITMAP 或 CBitmap
我有一个字节数组(我直接从 .bmp 通过流读取该数组,然后将其作为 BLOB 存储在数据库中),我希望将其显示为 CImageList 中的图标。因此我想以某种方式将我的数据加载到 HBITMAP 或 CBitmap 中。到目前为止,我已经这样做了,从文件中读取:
hPic = (HBITMAP)LoadImage(NULL, strPath, IMAGE_BITMAP, dwWidth, dwHeight, LR_LOADFROMFILE | LR_VGACOLOR);
...
CBitmap bitmap;
bitmap.Attach(hPicRet);
但显然,这只适用于文件,但不适用于字节数组。如何获得相同的结果,但从字节数组中读取?
编辑: 请注意,我的数组不仅包含颜色信息,还包含写入磁盘上的完整文件,包括所有标头和元数据。在我看来,丢弃所有这些信息是一个坏主意。
I have an array of bytes (which I read through a stream directly from a .bmp and then store as a BLOB in a database) which I want to display as icons in a CImageList. Therefore I want to somehow load my data into an HBITMAP or CBitmap. I have done it like this up to now, reading from a file:
hPic = (HBITMAP)LoadImage(NULL, strPath, IMAGE_BITMAP, dwWidth, dwHeight, LR_LOADFROMFILE | LR_VGACOLOR);
...
CBitmap bitmap;
bitmap.Attach(hPicRet);
But obviously, that only works for files, but not for byte-arrays. How can I get the same result, but reading from an array of byte?
Edit:
Note that my array does not contain just the colour information, but rather the complete file as it is written on disk, including all headers and meta-data. It seems to me that discarding all that information is a bad idea.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
假设您已将信息加载到名为 bytes 的 BYTE 数组中......
这有点混乱,可以使用大量的错误检查,但基本思想是合理的。
Assuming you have the information loaded into a BYTE array named bytes....
It's a little messy and could use a hefty dose of error checking, but the basic idea is sound.
以下示例可以帮助您。
Following sample could help you.
像这样的东西对我有用:(
这是专门为 32 位颜色配置的,但您可以指定任何类型)。
Something like this worked for me:
(This is specifically configured for 32-bit colors, but you can specify any kind).
好的,这是一个完整的示例: http://nishi.dreamhosters.com/u/so_bmp_v0.zip< /a>
Ok, here's a complete example: http://nishi.dreamhosters.com/u/so_bmp_v0.zip