Lines Matching refs:srcH
1958 int srcH, srcW, dstH, dstW, srcY, srcX, dstY, dstX; in PHP_FUNCTION() local
1969 srcH = SH; in PHP_FUNCTION()
1976 gdImageCopyResampled(im_dst, im_src, dstX, dstY, srcX, srcY, dstW, dstH, srcW, srcH); in PHP_FUNCTION()
3740 int srcH, srcW, srcY, srcX, dstY, dstX; in PHP_FUNCTION() local
3751 srcH = SH; in PHP_FUNCTION()
3756 gdImageCopy(im_dst, im_src, dstX, dstY, srcX, srcY, srcW, srcH); in PHP_FUNCTION()
3769 int srcH, srcW, srcY, srcX, dstY, dstX, pct; in PHP_FUNCTION() local
3780 srcH = SH; in PHP_FUNCTION()
3786 gdImageCopyMerge(im_dst, im_src, dstX, dstY, srcX, srcY, srcW, srcH, pct); in PHP_FUNCTION()
3798 int srcH, srcW, srcY, srcX, dstY, dstX, pct; in PHP_FUNCTION() local
3809 srcH = SH; in PHP_FUNCTION()
3815 gdImageCopyMergeGray(im_dst, im_src, dstX, dstY, srcX, srcY, srcW, srcH, pct); in PHP_FUNCTION()
3828 int srcH, srcW, dstH, dstW, srcY, srcX, dstY, dstX; in PHP_FUNCTION() local
3839 srcH = SH; in PHP_FUNCTION()
3846 if (dstW <= 0 || dstH <= 0 || srcW <= 0 || srcH <= 0) { in PHP_FUNCTION()
3851 gdImageCopyResized(im_dst, im_src, dstX, dstY, srcX, srcY, dstW, dstH, srcW, srcH); in PHP_FUNCTION()