Lines Matching refs:srcH
1909 int srcH, srcW, dstH, dstW, srcY, srcX, dstY, dstX; in PHP_FUNCTION() local
1925 srcH = SH; in PHP_FUNCTION()
1932 gdImageCopyResampled(im_dst, im_src, dstX, dstY, srcX, srcY, dstW, dstH, srcW, srcH); in PHP_FUNCTION()
3726 int srcH, srcW, srcY, srcX, dstY, dstX; in PHP_FUNCTION() local
3742 srcH = SH; in PHP_FUNCTION()
3747 gdImageCopy(im_dst, im_src, dstX, dstY, srcX, srcY, srcW, srcH); in PHP_FUNCTION()
3759 int srcH, srcW, srcY, srcX, dstY, dstX, pct; in PHP_FUNCTION() local
3775 srcH = SH; in PHP_FUNCTION()
3781 gdImageCopyMerge(im_dst, im_src, dstX, dstY, srcX, srcY, srcW, srcH, pct); in PHP_FUNCTION()
3793 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()
3827 int srcH, srcW, dstH, dstW, srcY, srcX, dstY, dstX; in PHP_FUNCTION() local
3843 srcH = SH; in PHP_FUNCTION()
3850 if (dstW <= 0 || dstH <= 0 || srcW <= 0 || srcH <= 0) { in PHP_FUNCTION()
3855 gdImageCopyResized(im_dst, im_src, dstX, dstY, srcX, srcY, dstW, dstH, srcW, srcH); in PHP_FUNCTION()