Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在没有 .net 框架的情况下,如何在 C++ 中将位图转换为字节数组?
如果您使用的是 Windows,则可以使用GetDIBits来检索位图数据。
GetDIBits
如果您的位图是与设备无关的位图,您可以使用 GetObject 并传入 BITMAP 来访问像素数据。这避免了制作像素数据的副本。