我正在尝试阅读PNG文件的宽度和高度。 这是我的代码:
struct TImageSize {
int width;
int height;
};
bool getPngSize(const char *fileName, TImageSize &is) {
std::ifstream file(fileName, std::ios_base::binary | std::ios_base::in);
if (!file.is_open() || !file) {
file.close();
return false;
}
// Skip PNG file signature
file.seekg(9, std::ios_base::cur);
// First chunk: IHDR image header
// Skip Chunk Length
file.seekg(4, std::ios_base::cur);
// Skip Chunk Type
file.seekg(4, std::ios_base::cur);
__int32 width, height;
file.read((char*)&width, 4);
file.read((char*)&height, 4);
std::cout << file.tellg();
is.width = width;
is.height = height;
file.close();
return true;
}
如果我尝试从this image from Wikipedia中读取,我会得到这些错误的值:
252097920(应为800)
139985408(应该是600)
请注意,该函数不返回false,因此width和height变量的内容必须来自文件。
答案 0 :(得分:8)
看起来像是一个字节:
// Skip PNG file signature
file.seekg(9, std::ios_base::cur);
PNG Specification表示标题长度为8个字节,因此您希望“9”代替“8”。职位从0开始。
另请注意,规范说integers are in network (big-endian) order,因此如果您使用的是小端系统,则可能需要或需要使用ntohl()或以其他方式转换字节顺序。
答案 1 :(得分:3)
当你查看Portable Network Graphics Technical details时,它表示签名是8个字节而不是9个。
另外,您确定您的系统具有与PNG标准相同的字节顺序吗? ntohl(3)将确保正确的字节顺序。 It's也适用于Windows。