我编写 netbpm 图像的代码有什么问题?

What is wrong with my code to write netbpm images?

我目前正在做一个需要输出生成图像的项目。由于它的简单性,我决定使用灰度 netbpm format。这些图像之一是高度图。我的导出代码如下:

#include <array>
#include <fstream>
#include <iostream>

int main(){
    constexpr unsigned LENGTH = 4;
    std::array<double, LENGTH*LENGTH> m_data = {
        0, 0, 0, 0,  
        0, 1, 1, 0,
        0, 1, 1, 0,
        0, 0, 0, 0
    };

    std::ofstream fout;
    fout.exceptions(std::ios::badbit | std::ios::failbit);
    fout.open("test.pgm", std::ios::binary);
    fout << "P5 " << LENGTH << " " << LENGTH << "\n256\n";

    for(unsigned i=0;i<LENGTH*LENGTH;++i){
        unsigned char brightness = m_data[i]*255;
        std::cout << m_data[i] << std::endl;
        fout.write(reinterpret_cast<char*>(&brightness), sizeof(unsigned char));
    }

    return 0;
}

阅读 the specification for the netbpm format on Wikipedia 后,我认为这段代码是正确的。然而,当我尝试在 Gimp 或 Clion 中打开此图像时,出现了各种错误:

文件以 pgm 扩展名保存。我的代码有什么问题?

尝试像这样编写 NetPBM header:

fout << "P5\n" << LENGTH << " " << LENGTH << "\n255\n";

原因是大多数图像阅读器检查 MAXVAL,如果它是 255 或更小,他们假设每像素 8 位。如果 MAXVAL 超过 255,他们假设每像素 16 位,因此他们会抱怨您的文件太短(因为它不提供每像素 2 字节)。