Searched refs:dstW (Results 1 – 3 of 3) sorted by relevance
/PHP-5.3/ext/gd/libgd/ |
H A D | gd.h | 555 …ImagePtr dst, gdImagePtr src, int dstX, int dstY, int srcX, int srcY, int dstW, int dstH, int srcW… 566 …ImagePtr dst, gdImagePtr src, int dstX, int dstY, int srcX, int srcY, int dstW, int dstH, int srcW…
|
H A D | gd.c | 2344 …ImagePtr dst, gdImagePtr src, int dstX, int dstY, int srcX, int srcY, int dstW, int dstH, int srcW… in gdImageCopyResized() argument 2370 stx[i] = dstW * (i+1) / srcW - dstW * i / srcW ; in gdImageCopyResized() 2457 …ImagePtr dst, gdImagePtr src, int dstX, int dstY, int srcX, int srcY, int dstW, int dstH, int srcW… in gdImageCopyResampled() argument 2463 gdImageCopyResized (dst, src, dstX, dstY, srcX, srcY, dstW, dstH, srcW, srcH); in gdImageCopyResampled() 2469 for (x = dstX; (x < dstX + dstW); x++) { in gdImageCopyResampled() 2474 sx1 = ((double) x - (double) dstX) * (double) srcW / dstW; in gdImageCopyResampled() 2475 sx2 = ((double) (x + 1) - (double) dstX) * (double) srcW / dstW; 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 1954 dstW = DW; 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 3802 dstW = DW; 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 41 milliseconds