Searched refs:dstH (Results 1 – 3 of 3) sorted by relevance
/PHP-8.0/ext/gd/libgd/ |
H A D | gd.h | 685 …st, gdImagePtr src, int dstX, int dstY, int srcX, int srcY, int dstW, int dstH, int srcW, int srcH… 696 …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.0/ext/gd/ |
H A D | gd.c | 1132 int srcH, srcW, dstH, dstW, srcY, srcX, dstY, dstX; in PHP_FUNCTION() local 1147 dstH = DH; in PHP_FUNCTION() 1150 gdImageCopyResampled(im_dst, im_src, dstX, dstY, srcX, srcY, dstW, dstH, srcW, srcH); in PHP_FUNCTION() 3004 int srcH, srcW, dstH, dstW, srcY, srcX, dstY, dstX; in PHP_FUNCTION() local 3019 dstH = DH; in PHP_FUNCTION() 3027 if (dstH <= 0) { in PHP_FUNCTION() 3042 gdImageCopyResized(im_dst, im_src, dstX, dstY, srcX, srcY, dstW, dstH, srcW, srcH); in PHP_FUNCTION()
|
Completed in 35 milliseconds