Lines Matching refs:srcH
1906 int srcH, srcW, dstH, dstW, srcY, srcX, dstY, dstX; in PHP_FUNCTION() local
1922 srcH = SH; in PHP_FUNCTION()
1929 gdImageCopyResampled(im_dst, im_src, dstX, dstY, srcX, srcY, dstW, dstH, srcW, srcH); in PHP_FUNCTION()
3723 int srcH, srcW, srcY, srcX, dstY, dstX; in PHP_FUNCTION() local
3739 srcH = SH; in PHP_FUNCTION()
3744 gdImageCopy(im_dst, im_src, dstX, dstY, srcX, srcY, srcW, srcH); in PHP_FUNCTION()
3756 int srcH, srcW, srcY, srcX, dstY, dstX, pct; in PHP_FUNCTION() local
3772 srcH = SH; in PHP_FUNCTION()
3778 gdImageCopyMerge(im_dst, im_src, dstX, dstY, srcX, srcY, srcW, srcH, pct); in PHP_FUNCTION()
3790 int srcH, srcW, srcY, srcX, dstY, dstX, pct; in PHP_FUNCTION() local
3806 srcH = SH; in PHP_FUNCTION()
3812 gdImageCopyMergeGray(im_dst, im_src, dstX, dstY, srcX, srcY, srcW, srcH, pct); in PHP_FUNCTION()
3824 int srcH, srcW, dstH, dstW, srcY, srcX, dstY, dstX; in PHP_FUNCTION() local
3840 srcH = SH; in PHP_FUNCTION()
3847 if (dstW <= 0 || dstH <= 0 || srcW <= 0 || srcH <= 0) { in PHP_FUNCTION()
3852 gdImageCopyResized(im_dst, im_src, dstX, dstY, srcX, srcY, dstW, dstH, srcW, srcH); in PHP_FUNCTION()