So far I can read every line and print it out to the console:
void readFile(){
string line;
ifstream myfile("example1.pgm");
if (myfile.is_open()){
while (myfile.good()){
getline (myfile,line);
cout << line;
}
}
However a pgm file apparently will always have the following at the start before the data:
P2
# test.pgm
24 7
15
How can i adapt my code so that it checks that “P2” is present, ignores any comments (#), and stores the variables and subsequent pixel data?
I’m a bit lost and new to c++ so any help is appreicated.
Thanks
There are a lot of different ways to parse a file. For something like this, you could look at the answers on this site. Personally, I would go with a loop of getline() and test/parse every line (stored in the variable “line”), you can also use a stringstream since it is easier to use with multiple values :
Idea
First line : test that P2 (Portable graymap) is present, maybe with something like
Second line : do nothing, you can go on with the next getline()
Third line : store the size of the image; with a stringstream you could do this
Following lines : store the pixel data until you reach the end of the file
Resulting code
You can try this code and adapt it to your needs :
EDIT
Here is a good tutorial on how to use stringstreams.