aboutsummaryrefslogtreecommitdiff
path: root/src/ppm_pixel_stream.cc
blob: 465584b3a5a5938b9b3d8ce3a1900525f655f01c (plain)
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
#include "ppm_pixel_stream.h"

namespace {

inline void write_color(std::ofstream& out, const imgen::color& color) {
	out << std::get<0>(color)
	    << std::get<1>(color)
	    << std::get<2>(color);
}

}

namespace imgen {

ppm_pixel_stream::ppm_pixel_stream(
	const std::string& path,
	const std::size_t  width,
	const std::size_t  height
): stream_() {
	this->stream_.open(path, std::ios::binary | std::ios::out);
	this->stream_.sync_with_stdio(false);

	this->stream_ << "P6\n" << width << " " << height << "\n255\n";
}

ppm_pixel_stream& ppm_pixel_stream::operator<<(const color& value) {
	write_color(this->stream_, value);

	return *this;
}

}