KrisLibrary  1.0.0
import.h
1 #ifndef IMAGE_IMPORT_H
2 #define IMAGE_IMPORT_H
3 
4 #include "image.h"
5 
6 bool ImportImage(const char* fn, Image& img);
7 bool ImportImagePPM(const char* fn, Image& img);
8 bool ImportImageBMP(const char* fn, Image& img);
9 bool ImportImageTGA(const char* fn, Image& img);
10 bool ImportImageGDIPlus(const char* fn, Image& img);
13 const char* ImageImportTypes();
14 
15 #endif
Definition: image.h:6