欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

linux下C语言之BMP图片操作编程(中)

程序员文章站 2022-03-19 20:56:35
关于BMP图的介绍之前已经说过了,最近要用到,又要重新开始学习。 现在实现一个让bmp左转的效果: #include #include #include #...

关于BMP图的介绍之前已经说过了,最近要用到,又要重新开始学习。

现在实现一个让bmp左转的效果:

#include 
#include 
#include 

#define  RGB(r,g,b)    		((r<<16)|(g<<8)|b)

typedef  unsigned char  U8 ; 
typedef  unsigned short U16 ; 
typedef  unsigned int   U32 ; 

#pragma  pack(1)
struct bmp_header
{
	//bmp header
	U8  Signatue[2] ;   // B  M
	U32 FileSize ;     //文件大小
	U16 Reserv1 ; 
	U16 Reserv2 ; 
	U32 FileOffset ;   //文件头偏移量
	
	//DIB header
	U32 DIBHeaderSize ; //DIB头大小
	U32 ImageWidth   ;  //文件宽度
	U32 ImageHight   ;  //文件高度
	U16 Planes       ; 
	U16 BPP          ;  //每个相素点的位数
	U32 Compression  ; 
	U32 ImageSize    ;  //图文件大小
	U32 XPPM ; 
	U32 YPPM ; 
	U32 CCT ; 
	U32 ICC ;          
};
#pragma  pack()


int main(int argc , char **argv)
{
	if(argc != 3)
		return -1 ; 

	int fd ; 
	int dest_fd ; 
	fd = open(argv[1] , O_RDONLY);
	if(-1 == fd)
	{
		perror("open bmp file fail");
		return -2 ; 
	}

	dest_fd = open( argv[2] , O_RDWR | O_CREAT|O_TRUNC , 0777);
	if(dest_fd < 0 )
	{
		perror("open rgb565 fail");
		return -3 ; 
	}


	struct bmp_header  header ; 

	int ret ; 
	
	ret = read(fd , &header , sizeof(struct bmp_header));

	printf(" Signatue[0]      : %c  \n " , header.Signatue[0]  );
	printf(" Signatue[1]      : %c  \n " , header.Signatue[1]  );
	printf(" FileSize         : %d  \n " , header.FileSize     );
	printf(" Reserv1          : %d  \n " , header.Reserv1      );
	printf(" Reserv2          : %d  \n " , header.Reserv2      );
	printf(" FileOffset       : %d  \n " , header.FileOffset   );
	printf(" DIBHeaderSize    : %d  \n " , header.DIBHeaderSize);
	printf(" ImageWidth       : %d  \n " , header.ImageWidth   );
	printf(" ImageHight       : %d  \n " , header.ImageHight   );
	printf(" Planes           : %d  \n " , header.Planes       );
	printf(" BPP              : %d  \n " , header.BPP          );
	printf(" Compression      : %d  \n " , header.Compression  );
	printf(" ImageSize        : %d  \n " , header.ImageSize    );
	printf(" XPPM             : %d  \n " , header.XPPM         );
	printf(" YPPM             : %d  \n " , header.YPPM         );
	printf(" CCT              : %d  \n " , header.CCT          );
	printf(" ICC              : %d  \n " , header.ICC          );

	char buffer[header.ImageSize] ; 

	read(fd , buffer , header.ImageSize);

	close(fd);

	//改变地方
	header.ImageWidth = 480;
	header.ImageHight = 800 ; 

	write(dest_fd , &header , sizeof(struct bmp_header));

	int row , col ; 
	char *p = NULL ; 

	for(col = 0 ; col < 800; col++)
	{
		for(row = 480-1 ; row >= 0; row--)
		{
			p =( buffer+(row*800 + col)*3);
		//	data = RGB((unsigned char)(*(p+2)) , (unsigned char)(*(p+1)) , 
		//	(unsigned char )(*(p)));
			write(dest_fd , p , 3);
		}
	}
	
	close(dest_fd);

	return 0 ; 
}