-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathPPM.cpp
187 lines (151 loc) · 5.14 KB
/
PPM.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
//
// Copyright (C) Wojciech Jarosz <wjarosz@gmail.com>. All rights reserved.
// Use of this source code is governed by a BSD-style license that can
// be found in the LICENSE.txt file.
//
#include "PPM.h"
#include <cstdio>
#include <string>
#include <iostream>
#include <stdexcept>
#include <cmath>
using namespace std;
namespace
{
struct RGB
{
unsigned char r;
unsigned char g;
unsigned char b;
};
} // end namespace
bool isPPMImage(const char *filename)
{
FILE *infile = nullptr;
int numInputsRead = 0;
char buffer[256];
try
{
infile = fopen(filename, "rb");
if (!infile)
throw std::runtime_error("cannot open file.");
if ((fgets(buffer, 256, infile) == nullptr) || (buffer[0] != 'P') || (buffer[1] != '6'))
throw std::runtime_error("image is not a binary PPM file.");
// skip comments
do {fgets(buffer, sizeof(buffer), infile);} while(buffer[0] == '#');
// read image size
int width, height;
numInputsRead = sscanf(buffer, "%d %d", &width, &height);
if (numInputsRead != 2)
throw runtime_error("could not read number of channels in header.");
// skip comments
do {fgets(buffer, sizeof(buffer), infile);} while(buffer[0] == '#');
// read maximum pixel value (usually 255)
int colors;
numInputsRead = sscanf(buffer, "%d", &colors);
if (numInputsRead != 1)
throw runtime_error("could not read max color value.");
if (colors != 255)
throw std::runtime_error("max color value must be 255.");
fclose(infile);
return true;
}
catch (const std::exception &e)
{
if (infile)
fclose(infile);
return false;
}
}
float * loadPPMImage(const char *filename, int *width, int *height, int *numChannels)
{
FILE *infile = nullptr;
float * img = nullptr;
int colors;
int numInputsRead = 0;
float invColors;
char buffer[256];
RGB *buf = nullptr;
try
{
infile = fopen(filename, "rb");
if (!infile)
throw std::runtime_error("cannot open file.");
if ((fgets(buffer, 256, infile) == nullptr) || (buffer[0] != 'P') || (buffer[1] != '6'))
throw std::runtime_error("image is not a binary PPM file.");
*numChannels = 3;
// skip comments
do {fgets(buffer, sizeof(buffer), infile);} while(buffer[0] == '#');
// read image size
numInputsRead = sscanf(buffer, "%d %d", width, height);
if (numInputsRead != 2)
throw runtime_error("could not read number of channels in header.");
// skip comments
do {fgets(buffer, sizeof(buffer), infile);} while(buffer[0] == '#');
// read maximum pixel value (usually 255)
numInputsRead = sscanf(buffer, "%d", &colors);
if (numInputsRead != 1)
throw runtime_error("could not read max color value.");
invColors = 1.0f/colors;
if (colors != 255)
throw std::runtime_error("max color value must be 255.");
img = new float [*width * *height * 3];
buf = new RGB[*width];
for (int y = 0; y < *height; ++y)
{
if (fread(buf, *width * sizeof(RGB), 1, infile) != 1)
throw std::runtime_error("cannot read pixel data.");
RGB *cur = buf;
float * curLine = &img[y * *width * 3];
for (int x = 0; x < *width; x++)
{
curLine[3*x + 0] = cur->r * invColors;
curLine[3*x + 1] = cur->g * invColors;
curLine[3*x + 2] = cur->b * invColors;
cur++;
}
}
delete [] buf;
fclose(infile);
return img;
}
catch (const std::exception &e)
{
delete [] buf;
delete [] img;
if (infile)
fclose(infile);
throw std::runtime_error(string("ERROR in loadPPMImage: ") +
string(e.what()) +
string(" Unable to read PPM file '") +
filename + "'");
}
}
bool writePPMImage(const char *filename, int width, int height, int numChannels, const unsigned char *data)
{
FILE *outfile = nullptr;
try
{
outfile = fopen(filename, "wb");
if (!outfile)
throw std::runtime_error("cannot open file.");
// write header
fprintf(outfile, "P6\n");
fprintf(outfile, "%d %d\n", width, height);
fprintf(outfile, "255\n");
auto numChars = static_cast<size_t>(numChannels*width*height);
if (fwrite(data, sizeof(unsigned char), numChars, outfile) != numChars)
throw std::runtime_error("cannot write pixel data.");
fclose (outfile);
return true;
}
catch (const std::exception &e)
{
if (outfile)
fclose (outfile);
throw std::runtime_error(string("ERROR in writePPMImage: ") +
string(e.what()) +
string(" Unable to write PPM file '") +
string(filename) + "'");
}
}