termage/src/pixels.hpp

11 lines
219 B
C++
Raw Normal View History

#ifndef PIXELS_H_
#define PIXELS_H_
#include <iostream>
2024-01-27 16:58:52 +01:00
void write_image(std::ostream& os);
void write_image(std::ostream& os, FILE*);
void write_image(std::ostream& os, const std::string& path);
#endif // PIXELS_H_