PanoramaViewer
 All Classes Namespaces Files Functions Variables Macros Pages
pngFile.h
Go to the documentation of this file.
1 /*
2  * pngFile.h
3  *
4  * Created on: 9 juil. 2013
5  * Author: hallison
6  */
7 
8 #ifndef PNGFILE_H_
9 #define PNGFILE_H_
10 
11 #include <stdio.h>
12 
13 namespace LayerSceneGraph {
14 
15 class pngFile {
16 public:
17  pngFile();
18  virtual ~pngFile();
19 
20  static unsigned char *read_png_file(FILE *fp, int *cols, int *rows);
21  static void write_png_file(FILE *fp, int width, int height, unsigned char *pixels);
22 };
23 
24 } /* namespace LayerSceneGraph */
25 #endif /* PNGFILE_H_ */