免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 2942 | 回复: 1
打印 上一主题 下一主题

按字节读取bmp图片 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2009-07-21 12:42 |只看该作者 |倒序浏览
使用按字节读取bmp图片转存,但是读取的文件转存后与源图像有差别,请问如何解决?
仅限于256灰度图片
/*按字节读取bmp文件*/

#include<stdio.h>

#define BmpFileHead 54
#define ColorNumber 256

int main(void)
{
        int i,j;
        FILE *fpout,*fpin;
        unsigned char c;


        if((fpout = fopen("lena.bmp","r+b")) == NULL)
                printf("can't open source file\n");
        if((fpin = fopen("copy.bmp","w")) == NULL)
                printf("can't open source file\n");

        for(i = 0;i != BmpFileHead;i++)
        {
                c = fgetc(fpout);
                fputc(c,fpin);
        }
    fseek(fpout,BmpFileHead-1,SEEK_SET);
        for(i = 0;i != 4 * ColorNumber;i++)
        {
                c = fgetc(fpout);
                fputc(c,fpin);
               
        }
   fseek(fpout,1078,SEEK_SET);
        for(i = 0;i != 256;i++)
                for(j = 0;j != 260;j++)
                {
                        c = fgetc(fpout);
                        fputc(c,fpin);
                }


                fclose(fpout);
                fclose(fpin);

                return 0;
}[img]E:\copy.bmp[/img]

[ 本帖最后由 虑而后能得 于 2009-7-21 12:57 编辑 ]

论坛徽章:
0
2 [报告]
发表于 2009-07-21 21:50 |只看该作者
有知道的大牛吗?
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP