Created
September 7, 2011 06:16
-
-
Save MrOrz/1199900 to your computer and use it in GitHub Desktop.
bitmap.h for windows
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#ifndef __BITMAP__ | |
#define __BITMAP__ | |
#include <string> | |
#include <cstdio> | |
#include <windows.h> | |
#include <wingdi.h> | |
using namespace std; | |
typedef unsigned char Pixel; | |
/* helper function */ | |
inline Pixel toByte(double value){ | |
if(value>255.0) value = 255.0; | |
else if(value<0.0) value = 0.0; | |
return (Pixel)(value+0.5); // rounded | |
} | |
/* Bitmap class */ | |
class Bitmap{ | |
public: | |
/* constructor */ | |
Bitmap():_f(NULL){} | |
Bitmap(const string& fn, const char* flags){ | |
if(!open(fn, flags))perror("File open failed"); | |
} | |
/* buffers: pixel in ONE row */ | |
Pixel y[1920]; | |
Pixel u[1920]; | |
Pixel v[1920]; | |
// open("xxx.bmp", "rb") | |
// | |
bool open(const string& filename, const char* flags); | |
bool close(); | |
bool eof(); | |
void readHeader(); | |
void copyHeaderFrom(Bitmap b){ | |
_file_header = b._file_header; | |
_info_header = b._info_header; | |
} | |
void writeHeader(); | |
void printHeader(); | |
bool readRow(); | |
bool writeRow(); | |
FILE* getFileHandle(){ | |
return _f; | |
} | |
private: | |
BITMAPFILEHEADER _file_header; | |
BITMAPINFOHEADER _info_header; | |
FILE *_f; | |
}; | |
#endif // __BITMAP__ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment