Lines Matching refs:dstpf
76 unsigned char *dstbuf, int dstpf, int dstbottomup, int w, int h) in pixelconvert() argument
82 int dstps=tjPixelSize[dstpf]; in pixelconvert()
93 if(dstpf==TJPF_CMYK) in pixelconvert()
139 dstcolptr[tjRedOffset[dstpf]]=(unsigned char)(r+0.5); in pixelconvert()
140 dstcolptr[tjGreenOffset[dstpf]]=(unsigned char)(g+0.5); in pixelconvert()
141 dstcolptr[tjBlueOffset[dstpf]]=(unsigned char)(b+0.5); in pixelconvert()
152 dstcolptr[tjRedOffset[dstpf]]=srccolptr[tjRedOffset[srcpf]]; in pixelconvert()
153 dstcolptr[tjGreenOffset[dstpf]]=srccolptr[tjGreenOffset[srcpf]]; in pixelconvert()
154 dstcolptr[tjBlueOffset[dstpf]]=srccolptr[tjBlueOffset[srcpf]]; in pixelconvert()
162 int dstpf, int bottomup) in loadbmp() argument
172 if(!filename || !buf || !w || !h || dstpf<0 || dstpf>=TJ_NUMPF) in loadbmp()
215 dstps=tjPixelSize[dstpf]; in loadbmp()
228 pixelconvert(src->buffer[i], srcpf, 0, outbuf, dstpf, bottomup, *w, in loadbmp()
247 int retval=0, srcps, dstpf; in savebmp() local
303 if(srcpf==TJPF_GRAY) dstpf=srcpf; in savebmp()
304 else dstpf=TJPF_RGB; in savebmp()
316 pixelconvert(inbuf, srcpf, bottomup, dst->buffer[i], dstpf, 0, w, in savebmp()