X-Git-Url: https://hackdaworld.org/gitweb/?a=blobdiff_plain;f=bmp%2Fbmp.c;h=94e11d15c266469f7639fc3e2b65882d7d304774;hb=515c7fc6da820714686f9bfc87ccb9743c57d692;hp=2476140c61db6d033b521002ab682fbf5e38efe8;hpb=f8382861ee7bff6d129bd149579d26bf9b81ada0;p=my-code%2Fapi.git diff --git a/bmp/bmp.c b/bmp/bmp.c index 2476140..94e11d1 100644 --- a/bmp/bmp.c +++ b/bmp/bmp.c @@ -30,6 +30,9 @@ int bmp_shutdown(t_bmp *bmp) { int bmp_check_header_and_info(t_bmp *bmp) { + dprintf(bmp->outfd,"[bmp] magic identifier: %c%c\n", + bmp->hdr.identifier&0xff,bmp->hdr.identifier>>8); + if(bmp->info.compression!=0) { dprintf(bmp->outfd,"[bmp] compression not supported\n"); return B_NO_SUPPORT; @@ -40,9 +43,9 @@ int bmp_check_header_and_info(t_bmp *bmp) { return B_NO_SUPPORT; } - if(bmp->hdr.offset!=B_H_SIZE+B_I_SIZE) { + if(bmp->hdr.offset!=BMP_H_SIZE+BMP_I_SIZE) { dprintf(bmp->outfd,"[bmp] files with %d bytes offset not supported\n", - bmp->hdr-offset); + bmp->hdr.offset); return B_NO_SUPPORT; } @@ -55,9 +58,34 @@ int bmp_check_header_and_info(t_bmp *bmp) { return B_SUCCESS; } +int bmp_alloc_map(t_bmp *bmp) { + + int size; + + size=bmp->width*bmp->height*3; + + dprintf(bmp->outfd,"[bmp] alloc map memory (%d bytes)\n",size); + + if((bmp->map=(t_pixel *)malloc(size))==NULL) { + dprintf(bmp->outfd,"[bmp] memory map alloc failed\n"); + return B_E_MEM; + } + + return B_SUCCESS; +} + int bmp_write_file(t_bmp *bmp) { int fill,xsize,size; + int y; + unsigned char buf[3]; + + memset(buf,0,3); + + if(!(bmp->mode&WRITE)) { + dprintf(bmp->outfd,"[bmp] write mode not specified\n"); + return B_WRONG_MODE; + } xsize=bmp->width*3; fill=(4-(xsize%4))%4; @@ -79,22 +107,46 @@ int bmp_write_file(t_bmp *bmp) { bmp->info.ic=0; /* write it */ - ... + if((bmp->fd=open(bmp->file,O_WRONLY|O_CREAT))<0) { + dprintf(bmp->outfd,"[bmp] unable to open file %s\n",bmp->file); + return B_NO_FILE; + } + if(write(bmp->fd,&(bmp->hdr),BMP_H_SIZE)outfd,"[bmp] unable to write bmp header\n"); + return B_E_WRITE_DATA; + } + + if(write(bmp->fd,&(bmp->info),BMP_I_SIZE)outfd,"[bmp] unable to write bmp info\n"); + return B_E_WRITE_DATA; + } + + for(y=0;yheight;y++) { + if(write(bmp->fd,bmp->map+y*bmp->width,xsize)outfd,"[bmp] unable to write image data line %d\n",y); + return B_E_WRITE_DATA; + } + if(write(bmp->fd,buf,fill)outfd,"[bmp] unable to write fill bytes\n"); + return B_E_WRITE_DATA; + } + } + + close(bmp->fd); return B_SUCCESS; } int bmp_read_file(t_bmp *bmp) { - unsigned char buf[BMP_HI_SIZE]; + unsigned char buf[BMP_H_SIZE+BMP_I_SIZE]; int y,xsize; int crop; - unsigned char *data; if(!(bmp->mode&READ)) { - dprintf(bmp->outfd,"[bmp] read mode not specified"); - return B_NO_READ_MODE; + dprintf(bmp->outfd,"[bmp] read mode not specified\n"); + return B_WRONG_MODE; } if((bmp->fd=open(bmp->file,O_RDONLY))<0) {