Searched refs:dstH (Results 1 – 3 of 3) sorted by relevance
/PHP-8.2/ext/gd/libgd/ |
H A D | gd.h | 708 …st, gdImagePtr src, int dstX, int dstY, int srcX, int srcY, int dstW, int dstH, int srcW, int srcH… 719 …st, gdImagePtr src, int dstX, int dstY, int srcX, int srcY, int dstW, int dstH, int srcW, int srcH…
|
H A D | gd.c | 2431 …st, gdImagePtr src, int dstX, int dstY, int srcX, int srcY, int dstW, int dstH, int srcW, int srcH) in gdImageCopyResized() argument 2457 sty[i] = dstH * (i+1) / srcH - dstH * i / srcH ; in gdImageCopyResized() 2541 …st, gdImagePtr src, int dstX, int dstY, int srcX, int srcY, int dstW, int dstH, int srcW, int srcH) in gdImageCopyResampled() argument 2547 gdImageCopyResized (dst, src, dstX, dstY, srcX, srcY, dstW, dstH, srcW, srcH); in gdImageCopyResampled() 2550 for (y = dstY; (y < dstY + dstH); y++) { in gdImageCopyResampled() 2551 sy1 = ((double) y - (double) dstY) * (double) srcH / (double) dstH; in gdImageCopyResampled() 2552 sy2 = ((double) (y + 1) - (double) dstY) * (double) srcH / (double) dstH; in gdImageCopyResampled()
|
/PHP-8.2/ext/gd/ |
H A D | gd.c | 1034 int srcH, srcW, dstH, dstW, srcY, srcX, dstY, dstX; in PHP_FUNCTION() local 1049 dstH = DH; in PHP_FUNCTION() 1052 gdImageCopyResampled(im_dst, im_src, dstX, dstY, srcX, srcY, dstW, dstH, srcW, srcH); in PHP_FUNCTION() 2931 int srcH, srcW, dstH, dstW, srcY, srcX, dstY, dstX; in PHP_FUNCTION() local 2946 dstH = DH; in PHP_FUNCTION() 2954 if (dstH <= 0) { in PHP_FUNCTION() 2969 gdImageCopyResized(im_dst, im_src, dstX, dstY, srcX, srcY, dstW, dstH, srcW, srcH); in PHP_FUNCTION()
|
Completed in 26 milliseconds