Lines Matching refs:height

158 void writePbm_(OutputBuffer& o_rOutputBuf, Stream* str, int width, int height, bool bWithLinefeed, …  in writePbm_()  argument
166 int nOutLen = snprintf(&o_rOutputBuf[3], WRITE_BUFFER_SIZE-10, "%d %d", width, height); in writePbm_()
173 const int size = height * ((width + 7) / 8); in writePbm_()
203 int height, in writePpm_() argument
213 int nOutLen = snprintf(&o_rOutputBuf[3], WRITE_BUFFER_SIZE-10, "%d %d", width, height); in writePpm_()
224 const int size = width*height*3 + header_size; in writePpm_()
243 for( int y=0; y<height; ++y) in writePpm_()
265 int height, in writePng_() argument
274 PngHelper::createPng( o_rOutputBuf, str, width, height, zeroColor, oneColor, bIsMask ); in writePng_()
283 int width, int height, GfxImageColorMap* colorMap, in writePng_() argument
291 …PngHelper::createPng( o_rOutputBuf, str, width, height, colorMap, maskStr, maskWidth, maskHeight, … in writePng_()
300 int width, int height, GfxImageColorMap* colorMap, in writePng_() argument
308 …PngHelper::createPng( o_rOutputBuf, str, width, height, colorMap, maskStr, maskWidth, maskHeight, … in writePng_()
316 void writeMask_( OutputBuffer& o_rOutputBuf, Stream* str, int width, int height, bool bWithLinefeed… in writeMask_() argument
321 writePbm_(o_rOutputBuf, str, width, height, bWithLinefeed, bInvert ); in writeMask_()
327 int height, in writeImage_() argument
352 writePng_( o_rOutputBuf, str, width, height, zeroColor, oneColor, false, bWithLinefeed ); in writeImage_()
355 writePpm_( o_rOutputBuf, str, width, height, colorMap, bWithLinefeed ); in writeImage_()
364 int height, in writeImage() argument
365 … GfxImageColorMap* colorMap ) { writeImage_(o_rOutputBuf,str,width,height,colorMap,false); } in writeImage()
369 int height, in writeImageLF() argument
370 … GfxImageColorMap* colorMap ) { writeImage_(o_rOutputBuf,str,width,height,colorMap,true); } in writeImageLF()
374 int height, in writeMask() argument
375 … bool bInvert ) { writeMask_(o_rOutputBuf,str,width,height,false,bInvert); } in writeMask()
379 int height, in writeMaskLF() argument
380 … bool bInvert ) { writeMask_(o_rOutputBuf,str,width,height,true,bInvert); } in writeMaskLF()
817 int width, int height, GBool invert, in drawImageMask() argument
822 printf( "drawMask %d %d %d", width, height, invert ); in drawImageMask()
833 writePng_( aBuf, str, width, height, oneColor, zeroColor, true, true ); in drawImageMask()
835 writePng_( aBuf, str, width, height, zeroColor, oneColor, true, true ); in drawImageMask()
838 writeMaskLF(aBuf, str, width, height, invert != 0); in drawImageMask()
843 int width, int height, GfxImageColorMap* colorMap, in drawImage() argument
849 printf( "drawImage %d %d", width, height ); in drawImage()
882 writeImageLF( aBuf, str, width, height, colorMap ); in drawImage()
888 int width, int height, in drawMaskedImage() argument
895 printf( "drawImage %d %d 0", width, height ); in drawMaskedImage()
896 … writePng_( aBuf, str, width, height, colorMap, maskStr, maskWidth, maskHeight, maskInvert, true ); in drawMaskedImage()
902 …printf( "drawMaskedImage %d %d %d %d %d", width, height, maskWidth, maskHeight, 0 /*maskInvert not… in drawMaskedImage()
903 writeImage( aBuf, str, width, height, colorMap ); in drawMaskedImage()
904 writeMaskLF( aMaskBuf, maskStr, width, height, maskInvert ); in drawMaskedImage()
911 int width, int height, in drawSoftMaskedImage() argument
918 printf( "drawImage %d %d 0", width, height ); in drawSoftMaskedImage()
919 …writePng_( aBuf, str, width, height, colorMap, maskStr, maskWidth, maskHeight, maskColorMap, true … in drawSoftMaskedImage()
925 printf( "drawSoftMaskedImage %d %d %d %d", width, height, maskWidth, maskHeight ); in drawSoftMaskedImage()
926 writeImage( aBuf, str, width, height, colorMap ); in drawSoftMaskedImage()