下你所需,载你所想!
汇集开发技术源码资料

Bitmap位图读取

:63.458KB :1 :2022-10-08 15:18:59

部分简介

Bitmap位图读取如果开发者对于本文件有需要的可以参考。
高效地Bitmap位图读取
【源码目录】
Bitmap
├── 256.H
├── BGI256V2.BGI
├── BITMAP.CPP
├── Readme.txt
└── Setup.bmp
0 directories, 5 files
void BITMAP::Show_BMP(char *fpath)
{
strcpy(filepath,fpath);
if (!open_file())
{
show_message("Invalid file");
return;
}
file.read((char *)&bmfh,sizeof(bmfh));
file.read((char *)&bmih,sizeof(bmih));
if (bmfh.bftype[0]!='B' | bmfh.bftype[1]!='M' )
{
show_message("Not a bmp file");
file.close();
return;
}

热门推荐

相关文章