X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~yarrgweb/git?p=ypp-sc-tools.main.git;a=blobdiff_plain;f=pctb%2Frgbimage.c;h=dc9fa68996069fbc3518b5d445f6b1766622cf20;hp=81eddf9898e83427a83f7376bef93868e8a4dc56;hb=044272b5016efd89618d3725353cdbea9a98d796;hpb=059fab3ad374847da031d23d7e25ee25e888bce0 diff --git a/pctb/rgbimage.c b/pctb/rgbimage.c index 81eddf9..dc9fa68 100644 --- a/pctb/rgbimage.c +++ b/pctb/rgbimage.c @@ -85,14 +85,16 @@ static int identify1(const RgbImage *base, Rect portion, int x,y,i; for (y=0; y=0 && c<=255); - int px= portion.tl.x + x, py= portion.tl.y + y; - diff |= px > portion.br.x || py > portion.br.y || - (c != RI_PIXEL(base,px,py)[i]); + rgb |= (Rgb)c << (i*8); } + int px= portion.tl.x + x, py= portion.tl.y + y; + diff |= px > portion.br.x || py > portion.br.y || + rgb != ri_rgb(base,px,py); } } if (!diff) { @@ -116,12 +118,17 @@ static int identify(const RgbImage *base, Rect portion, } void fwrite_ppmraw(FILE *f, const RgbImage *ri) { + int i; fprintf(f, "P6\n" "%d %d\n" "255\n", ri->w, ri->h); - int count= ri->w * ri->h * 3; - sysassert( fwrite(ri->data, 1, count, f) == count ); + for (i=0; i < ri->w * ri->h; i++) { + Rgb rgb= ri->data[i]; + fputc_unlocked(rgb >> 0, f); + fputc_unlocked(rgb >> 8, f); + fputc_unlocked(rgb >> 16, f); + } sysassert(!ferror(f)); sysassert(!fflush(f)); } @@ -132,8 +139,9 @@ static void fwrite_ppm(FILE *f, const RgbImage *base, Rect portion) { for (y=portion.tl.y; y<=portion.br.y; y++) { for (x=portion.tl.x; x<=portion.br.x; x++) { putc(' ',f); + Rgb rgb= ri_rgb(base,x,y); for (i=0; i<3; i++) - fprintf(f," %3d", RI_PIXEL(base,x,y)[i]); + fprintf(f," %3d", (rgb>>(i*8)) & 0xff); } putc('\n',f); } @@ -173,7 +181,7 @@ void identify_rgbimage(const RgbImage *base, Rect portion, RgbImage *alloc_rgb_image(int w, int h) { RgbImage *ri; - ri= mmalloc(sizeof(*ri) + w*h*3); + ri= mmalloc(sizeof(*ri) + w*h*sizeof(ri->data[0])); ri->w= w; ri->h= h; return ri;