Assignments
Assignments
bmp.h
Go to the documentation of this file.
1#ifndef BMP_INCLUDED
2#define BMP_INCLUDED
3
4#include "image.h"
5
6namespace Image
7{
9 void BMPReadImage( std::string fileName , Image32& img );
11 void BMPReadImage( FILE *fp , Image32& img );
12
14 void BMPWriteImage( const Image32& img , std::string fileName );
16 void BMPWriteImage( const Image32& img , FILE *fp );
17}
18#endif // BMP_INCLUDED
Definition: bmp.cpp:142
void BMPWriteImage(const Image32 &img, FILE *fp)
Definition: bmp.cpp:242
void BMPReadImage(FILE *fp, Image32 &img)
Definition: bmp.cpp:143