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.
我想在 C++ 中的 bmp 文件中获取一个字节 * 到 dib。我知道 bmp 包含一个 bmp 标头,我需要打开 bmp 文件并跳过一些字节以获取指向 dib 的指针。我不熟悉 C++,所以任何代码都会有所帮助!
我想做的伪代码:
byte * pointer = open(file.bmp); pointer += number of bits to get to dib. return pointer
用于seekg跳过 bmp 标头。我真的建议阅读有关文件 IO 的教程,例如这里。
seekg