This class read data from a png file and store it in an image. More...
#include <png.hpp>
Classes | |
| struct | source_manager |
| Source manager that allow us to read from a std::istream. More... | |
Public Member Functions | |
| reader (image &img) | |
| Constructor. | |
| reader (image &img, std::istream &f) | |
| Constructor. | |
| void | load (std::istream &f) |
| Load an image from a png file. | |
This class read data from a png file and store it in an image.
| claw::graphic::png::reader::reader | ( | image & | img | ) |
Constructor.
| img | The image in which the data will be stored. |
Definition at line 80 of file png_reader.cpp.
| claw::graphic::png::reader::reader | ( | image & | img, |
| std::istream & | f ) |
Constructor.
| img | The image in which the data will be stored. |
| f | The file from which we read the data. |
Definition at line 90 of file png_reader.cpp.
| void claw::graphic::png::reader::load | ( | std::istream & | f | ) |