ref: 90d3540b526dc8c34d8ec04f1e1dd356589ea7d1
dir: /load.c/
#include <u.h> #include <libc.h> #include <draw.h> #include "dat.h" #include "fns.h" /* like loadimage(2) but reverses scanline order and translates per cmap */ int loadbmp(Image *i, Rectangle r, uchar *data, int ndata, uchar *cmap) { int n, bpl; uchar *a; bpl = bytesperline(r, i->depth); n = bpl*Dy(r); if(n > ndata){ werrstr("loadbmp: insufficient data"); return -1; } if(i->depth == 8) for(a = data; a <data+ndata; a++) *a = cmap[*a]; n = bpl; while(r.max.y > r.min.y){ a = bufimage(i->display, 21+n); if(a == nil){ werrstr("bufimage failed"); return -1; } a[0] = 'y'; BPLONG(a+1, i->id); BPLONG(a+5, r.min.x); BPLONG(a+9, r.max.y-1); BPLONG(a+13, r.max.x); BPLONG(a+17, r.max.y); memmove(a+21, data, n); ndata += n; data += n; r.max.y--; } if(flushimage(i->display, 0) < 0) return -1; return ndata; } int loadrle(Image *i, Rectangle r, uchar *data, int ndata, uchar *cmap) { int nb, bpl; uchar *buf; bpl = bytesperline(r, i->depth); nb = bpl*Dy(r); buf = emalloc(nb); if(unrle(buf, nb, data, ndata, bpl, bpl/Dx(r)) == nil){ werrstr("loadrle: decompression failed"); free(buf); return -1; } if(loadbmp(i, r, buf, nb, cmap) < 0){ werrstr("loadrle: r=%R i->r=%R: %r", r, i->r); free(buf); return -1; } free(buf); return nb; }