Searched refs:dstH (Results 1 – 3 of 3) sorted by relevance
/PHP-5.3/ext/gd/libgd/ |
H A D | gd.h | 555 …st, gdImagePtr src, int dstX, int dstY, int srcX, int srcY, int dstW, int dstH, int srcW, int srcH… 566 …st, gdImagePtr src, int dstX, int dstY, int srcX, int srcY, int dstW, int dstH, int srcW, int srcH…
|
H A D | gd.c | 2344 …st, gdImagePtr src, int dstX, int dstY, int srcX, int srcY, int dstW, int dstH, int srcW, int srcH) in gdImageCopyResized() argument 2373 sty[i] = dstH * (i+1) / srcH - dstH * i / srcH ; in gdImageCopyResized() 2457 …st, gdImagePtr src, int dstX, int dstY, int srcX, int srcY, int dstW, int dstH, int srcW, int srcH) in gdImageCopyResampled() argument 2463 gdImageCopyResized (dst, src, dstX, dstY, srcX, srcY, dstW, dstH, srcW, srcH); in gdImageCopyResampled() 2466 for (y = dstY; (y < dstY + dstH); y++) { in gdImageCopyResampled() 2467 sy1 = ((double) y - (double) dstY) * (double) srcH / (double) dstH; in gdImageCopyResampled() 2468 sy2 = ((double) (y + 1) - (double) dstY) * (double) srcH / (double) dstH; in gdImageCopyResampled()
|
/PHP-5.3/ext/gd/ |
H A D | gd.c | 1938 int srcH, srcW, dstH, dstW, srcY, srcX, dstY, dstX; in PHP_FUNCTION() local 1953 dstH = DH; in PHP_FUNCTION() 1956 gdImageCopyResampled(im_dst, im_src, dstX, dstY, srcX, srcY, dstW, dstH, srcW, srcH); in PHP_FUNCTION() 3786 int srcH, srcW, dstH, dstW, srcY, srcX, dstY, dstX; in PHP_FUNCTION() local 3801 dstH = DH; in PHP_FUNCTION() 3804 if (dstW <= 0 || dstH <= 0 || srcW <= 0 || srcH <= 0) { in PHP_FUNCTION() 3809 gdImageCopyResized(im_dst, im_src, dstX, dstY, srcX, srcY, dstW, dstH, srcW, srcH); in PHP_FUNCTION()
|
Completed in 23 milliseconds