#include <ncutImage.h>
Inheritance diagram for ncut::PNGImage:
Public Member Functions | |
int | load (const char *filename) |
Load the PNG image file "filename". | |
int | save (const char *filename) const |
Save this PNGImage into the file "filename". | |
PNGImage () | |
PNGImage empty constructor. | |
PNGImage (const PNGImage &clone) | |
PNGImage copy constructor. | |
PNGImage (const char *filename) | |
A PNGImage can be contructed using a PNG image stored on disk. | |
PNGImage (int width, int height, int nChl) | |
PNGImage custom constructor. | |
virtual | ~PNGImage () |
PNGImage destructor. | |
virtual PNGImage & | operator= (const PNGImage &clone) |
PNGImage assignment operator. |
PNGImage
adds PNG-specific load and save functionality to its base class Image
.
|
PNGImage empty constructor. Creates an empty image with width=height=channels=0. |
|
PNGImage copy constructor.
|
|
A PNGImage can be contructed using a PNG image stored on disk.
PNGImage from the PNG image located at filename . |
|
PNGImage custom constructor.
|
|
Load the PNG image file "filename".
filename . |
|
PNGImage assignment operator.
|
|
Save this PNGImage into the file "filename".
|