c932df0faa
The first release for public testing.
11 lines
No EOL
265 B
C++
11 lines
No EOL
265 B
C++
#ifndef _png__hpp__included__
|
|
#define _png__hpp__included__
|
|
|
|
#include <stdexcept>
|
|
#include <cstdint>
|
|
#include <string>
|
|
|
|
void save_png_data(const std::string& file, uint8_t* data24, uint32_t width, uint32_t height) throw(std::bad_alloc,
|
|
std::runtime_error);
|
|
|
|
#endif |