png_writer.hpp (286B)
1 /* 2 * © 2020 Michael Percival <m@michaelpercival.xyz> 3 * See LICENSE file for copyright and license details. 4 */ 5 6 #include <string> 7 8 #include <png.h> 9 10 class PngWriter { 11 public: 12 static void write_png_file(std::string file_name, int width, int height, png_bytep* row_pointers); 13 };