Lines Matching refs:height
163 void PngHelper::appendIHDR( OutputBuffer& o_rOutputBuf, int width, int height, int depth, int color… in appendIHDR() argument
167 append( height, o_rOutputBuf ); in appendIHDR()
185 int height, in createPng() argument
192 appendIHDR( o_rOutputBuf, width, height, 1, 3 ); in createPng()
219 aScanlines.reserve( nLineSize * height + height ); in createPng()
222 for( int y = 0; y < height; y++ ) in createPng()
243 int width, int height, GfxImageColorMap* colorMap, in createPng() argument
248 appendIHDR( o_rOutputBuf, width, height, 8, 6 ); // RGBA image in createPng()
263 aScanlines.reserve( width*height*4 + height ); in createPng()
265 for( int y=0; y<height; ++y) in createPng()
304 int nIndex = (y*height/maskHeight) * (width*4+1) + // mapped line in createPng()
327 int width, int height, GfxImageColorMap* colorMap, in createPng() argument
334 appendIHDR( o_rOutputBuf, width, height, 8, 6 ); // RGBA image in createPng()
348 aScanlines.reserve( width*height*4 + height ); in createPng()
350 for( int y=0; y<height; ++y) in createPng()
385 int nIndex = (y*height/maskHeight) * (width*4+1) + // mapped line in createPng()