在 C 中查找 .bmp 图像的宽度和高度
我想知道是否可以在 C 中找到 .bmp 图像的宽度和高度。我已经查遍了所有地方,但我能找到的只是 c#、.NET 和 C++ 中的示例。但是,我找不到任何与 C 相关的代码。如果可能的话请帮忙。
I wanted to know if it is possible to find the width and height of a .bmp image in C. I've looked all over the place but all I could find is examples in c#, .NET and C++. However, I couldn't find any code related to C. Please help if possible.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
http://en.wikipedia.org/wiki/BMP_file_format#Bitmap_File_Header
我假设您必须编写自己的代码来读取标头并解析出您需要的信息。
我很久以前做过类似的事情,但我没有现成的例子。
http://en.wikipedia.org/wiki/BMP_file_format#Bitmap_File_Header
I'm assuming you'll have to write your own code to read the header and parse out the information you need.
I did something similar to this long ago, but I don't have a ready example.