PNM Reader:无法以二进制模式读取某些文件

时间:2013-05-27 21:38:54

标签: c++ visual-c++ visual-studio-2012 c++11 binaryfiles

我在pnm文件方面遇到了一些问题(这有点显而易见,否则我不会在这里发布XD)。事实上,我的老师要求我们以二进制模式开发一个简单的pnm阅读器,然后将其打印到屏幕上。我正在使用libEGL(一个可用的框架here)。我的问题是它只适用于这两个图像,并且与其他图像失败。

使用birch.pnm和checkers.pnm可以正常工作,但只有simple.pnm,cotton.pnm和fish_tile.pnm进入无限循环或抛出错误。

图片可用here

我的代码如下:

#include <iostream>
#include <string>
#include <sstream>
#include <fstream>
#include "engcomp_glib.h"

using namespace std;

struct RGB{
    char red, green, blue;
};

int main(int argc, char* argv[]){
    RGB **image;
    RGB pixel;
//ifstream _file("..\\bin\\birch.pnm");
ifstream _file("..\\bin\\checkers.pnm");

//ifstream _file("..\\bin\\cotton.pnm");
//ifstream _file("..\\bin\\cathedral.pnm");
//ifstream _file("..\\bin\\fish_tile.pnm");
string type, maxColor;
int width, height;

if(_file){
    _file >> type;

    if(type != "P6")
        cout << "Error! File type is not allowed." << endl;

    _file >> width >> height >> maxColor;
    _file.close();

    egl_inicializar(width, height, true);
    image = new RGB *[height];

    for(int row = 0; row < height; row++)
        image[row] = new RGB[width];

    //Working 8D
    //_file.open("..\\bin\\birch.pnm", ios::binary);
    _file.open("..\\bin\\checkers.pnm", ios::binary);

    //Not working D:<
    //_file.open("..\\bin\\cathedral.pnm", ios::binary);
    //_file.open("..\\bin\\fish_tile.pnm", ios::binary);
    //_file.open("..\\bin\\cotton.pnm", ios::binary);

        //imagem img; img.carregar("..\\bin\\birch.pnm");

        _file.seekg(0, _file.end);

        int size = _file.tellg();
        int currentSize = 0, counter = 0;
        char byte;

        _file.seekg(0, _file.beg);

        do{
            _file.read(reinterpret_cast<char *> (&byte), sizeof(char));

            if(byte == 10 || byte == 13)
                counter++;

        }while(counter < 3);

        int rows = 0, columns = 0;

        while(size != currentSize){
            _file.read(reinterpret_cast<char *> (&pixel), sizeof(RGB));

            if(rows < height && columns < width){
                image[rows][columns] = pixel;
                rows++;
            }
            else if(rows == height){
                rows = 0;
                columns++;

                image[rows][columns] = pixel;

                rows++;
            }
            //else if(columns >= width)
                //currentSize = size;

            currentSize = _file.tellg();
        }

        _file.close();

        while(!key[SDLK_ESCAPE]){
            for(int row = 0; row < height; row++)
                for(int column = 0; column < width; column++)
                    //egl_pixel(row, column, image[row][column].red, image[row][column].green, image[row][column].blue);
                    egl_pixel(column, row, image[column][row].red, image[column][row].green, image[column][row].blue);
                    //img.desenha(0, 0);
            egl_desenha_frame(false);
        }
    }
    egl_finalizar();

    return 0;
}

没有任何意义,因为它适用于其中两个,应该全部形成 我在文本编辑器中打开它们并且它们有标题,所以问题不在那里。我究竟做错了什么?我的同事编写了一个代码,将像素存储到一个大小为[height * width]的数组中,并且可以读取几乎所有的图像,但只能读取cathedral.pnm。

感谢您的耐心和帮助:)。

1 个答案:

答案 0 :(得分:0)

pnm的规范声明标题中的值由空格分隔,通常是换行符,但它们也可以是空格或制表符(或者我无法想到的其他内容)时刻;)例如,大教堂文件有一个空格作为分隔符。

根据规格,你从上到下,从左到右,从上到下读取文件。

如果你想要真正正确,如果maxColor不小于256,你应该阅读短裤而不是字符。

顺便说一下,你可以在这里找到规格:

http://netpbm.sourceforge.net/doc/ppm.html

祝你好运!