2024-01-19 12:05:14 +01:00
|
|
|
#ifndef PIXELS_H_
|
|
|
|
#define PIXELS_H_
|
|
|
|
|
|
|
|
#include <iostream>
|
|
|
|
|
2024-01-27 16:58:52 +01:00
|
|
|
void write_image(std::ostream& os);
|
2024-01-29 15:54:09 +01:00
|
|
|
void write_image(std::ostream& os, FILE*);
|
2024-01-19 12:05:14 +01:00
|
|
|
void write_image(std::ostream& os, const std::string& path);
|
|
|
|
|
|
|
|
#endif // PIXELS_H_
|