当前位置:  技术问答>linux和unix

急,急,急。。在LINUX下无何处理BMP图片呢?如果把三副BMP合成一副呢?

    来源: 互联网  发布时间:2016-02-08

    本文导语:  急,急,急。。在LINUX下无何处理BMP图片呢?如果把三副BMP合成一副呢? 望高手提供思路或者提供源代码例子,或者提供一些线索。。。 公司要我做,现在遇到麻烦了。。。 | 贴个源码参考,加载部分 bool LoadBmp(...


急,急,急。。在LINUX下无何处理BMP图片呢?如果把三副BMP合成一副呢?
望高手提供思路或者提供源代码例子,或者提供一些线索。。。
公司要我做,现在遇到麻烦了。。。

|
贴个源码参考,加载部分

bool LoadBmp(ImgInf * pRetInf, const char * psz)
{
bool bRet;
FILE * fh=NULL;
int nSize=0, nReadSize;
uint8 * pBuf=NULL;

fh=OpenImageFile(psz);
if(!fh)
return false;

nSize=GetFileSize(fh);
if(!nSize) return false;
pBuf=(uint8 *)malloc(nSize);
if(!pBuf)
{
dprintf("n*** Error: malloc failed to read file!");
return false;
}
memset(pBuf, 0, nSize);
nReadSize=fread(pBuf, 1, nSize, fh);
if(nReadSize != nSize)
{
dprintf("n*** Error: Read size %d != Real size %d", nReadSize, nSize);
}
fclose(fh);
bRet=ConvertBmpToImgInf(pRetInf, pBuf);
if(!bRet)
{
dprintf("nConvertBmpToImgInf failed!");
}
free(pBuf);
return bRet;
}


FILE *  OpenImageFile(const char * psz)
{
FILE *fh;
char szPathName[MAX_PATHNAME];

if(!psz || !(*psz)) return false;
AddDefPath_Postfix(szPathName, psz, NULL, NULL);
fh=fopen(szPathName, "rb");
if(!fh)
{
dprintf("nOpen %s failed!", szPathName);
return NULL;
}
return fh;
}

bool ConvertBmpToImgInf(ImgInf * pImgInf, uint8 * pBuf)
{
ColorTbl * pTbl, * pCurrTbl;
uint16 nBitsPerPixel, biCompression, biPlanes;
uint8 * pData, * pDataCurr, * pLineDataCurr;
uint32 nCurrX, nCurrY, nWidth, nHeight;
int nLineDataSize, nTmp;
uint32 nSrcColor, nSht, biSize;
color CurrColor, *pCurrCol;

if(!pImgInf || !pBuf) return false;
biSize =*((uint32*)(pBuf+nSizeBmpFileHeader+0));
nWidth =*((uint32*)(pBuf+nSizeBmpFileHeader+4));
nHeight =*((uint32*)(pBuf+nSizeBmpFileHeader+8));
biPlanes =*((uint16*)(pBuf+nSizeBmpFileHeader+12));
nBitsPerPixel =*((uint16*)(pBuf+nSizeBmpFileHeader+14));
biCompression =*((uint32*)(pBuf+nSizeBmpFileHeader+16));

if(biCompression)
{
dprintf("n*** Error: Can not open compressed file");
return false;
}
if(nBitsPerPixel != 1 && nBitsPerPixel != 2 && nBitsPerPixel != 4 && nBitsPerPixel != 8 &&
nBitsPerPixel != 16 && nBitsPerPixel != 24)
{
dprintf("n*** Error: The Specified file has an unknown bit format!");
return false;
}

pImgInf->size.x=nWidth;
pImgInf->size.y=nHeight;
pImgInf->pData=(color *)malloc(sizeof(color)*pImgInf->size.x*pImgInf->size.y);
if(!pImgInf->pData)
{
dprintf("n*** Error: Alloc memory for image info failed!");
return false;
}
pCurrCol=pImgInf->pData;

pData=pBuf+*(uint32*)(pBuf+10);
if(nBitsPerPixel2);

CurrColor>3);
//*/
/*
CurrColor |=(color)(pCurrTbl->blue>>3);

CurrColor>2);

CurrColor>3);
*/
}
else
{
pLineDataCurr=pDataCurr+(nCurrX*nBitsPerPixel)/8;
switch(nBitsPerPixel)
{
case 16:
CurrColor =*((color*)pLineDataCurr);
break;
case 24:
/*
CurrColor|=(color)(*(pLineDataCurr+2)>>3);

CurrColor2);

CurrColor3);
*/
/*
CurrColor|=(color)((*(pLineDataCurr+0)>>3)&0x1f);

CurrColor2)&0x3f);

CurrColor3)&0x1f);
*/
CurrColor|=((((color)(*(pLineDataCurr+2)))

    
 
 
 
本站(WWW.)旨在分享和传播互联网科技相关的资讯和技术,将尽最大努力为读者提供更好的信息聚合和浏览方式。
本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。












  • 相关文章推荐
  • 如何将Linux三张光盘整合成一张
  • linux下使用什么库对jpeg图片进行合成比较好?
  • linux c/c++ IP字符串转换成可比较大小的数字
  • 在win分区上安装linux和独立分区安装linux有什么区别?可以同时安装吗?(两个linux系统)
  • linux哪个版本好?linux操作系统版本详细介绍及选择方案推荐
  • 在虚拟机上安装的linux上,能像真的linux系统一样开发linux程序么?
  • secureCRT下Linux终端汉字乱码解决方法
  • 我重装window后,把linux的引导区覆盖了,进不了linux怎么办?急啊,望热心的人帮助 (现在有linux的盘)
  • Linux c字符串中不可打印字符转换成16进制
  • 安装vmware软件,不用再安装linux系统,就可以模拟linux系统了,然后可以在其上学习一下LINUX下的基本操作 了?
  • Linux常用命令介绍:更改所属用户群组或档案属性
  • 红旗Linux主机可以通过127.0.0.1访问,但如何是连网的Win2000机器通过Linux的IP去访问Linux
  • linux命令大全详细分类介绍及常用linux命令文档手册下载
  • 我重装window后,把linux的引导区覆盖了,进不了linux怎么办?急啊,望热心的人帮助 (现在没有linux的盘,只有DOS启动盘)
  • Linux Kernel 'sctp_v6_xmit()'函数信息泄露漏洞
  • 如何让win2000和linux共存。我装好WIN2000,再装LINUX7.0,但LILO只能找到LINUX,不能引导WIN2000
  • linux c下利用srand和rand函数生成随机字符串
  • 在windows中的VMware装了个linux,主板有两个串口,能做windows和linux的串口通信测试么,怎么测试这两个串口在linux是有效
  • Linux c++虚函数(virtual function)简单用法示例代码
  • 我们网站的服务器从windows2000迁往linux,ASP程序继续使用,可是我连LINUX的皮毛都不了解,大家告诉我LINUX下怎么建网站??
  • Docker官方镜像将会使用Alpine Linux替换Ubuntu
  • 中文Linux与西文Linus分别哪一个版是权威?I认为是:中科软的白旗Linux与西文的绿帽子Linux!大家的看法呢?
  • Linux下chmod命令详细介绍及用法举例
  • 我重装了winme,却进不了Linux了,而我现在又没有Linux光盘,也没有Linux启动盘,还有没有办法?


  • 站内导航:


    特别声明:169IT网站部分信息来自互联网,如果侵犯您的权利,请及时告知,本站将立即删除!

    ©2012-2021,,E-mail:www_#163.com(请将#改为@)

    浙ICP备11055608号-3