Searched refs:srcW (Results 1 – 3 of 3) sorted by relevance
/PHP-8.3/ext/gd/ |
H A D | gd.c | 1034 int srcH, srcW, dstH, dstW, srcY, srcX, dstY, dstX; in PHP_FUNCTION() local 1046 srcW = SW; in PHP_FUNCTION() 2844 int srcH, srcW, srcY, srcX, dstY, dstX; in PHP_FUNCTION() local 2856 srcW = SW; in PHP_FUNCTION() 2871 int srcH, srcW, srcY, srcX, dstY, dstX, pct; in PHP_FUNCTION() local 2883 srcW = SW; in PHP_FUNCTION() 2899 int srcH, srcW, srcY, srcX, dstY, dstX, pct; in PHP_FUNCTION() local 2911 srcW = SW; in PHP_FUNCTION() 2927 int srcH, srcW, dstH, dstW, srcY, srcX, dstY, dstX; in PHP_FUNCTION() local 2939 srcW = SW; in PHP_FUNCTION() [all …]
|
/PHP-8.3/ext/gd/libgd/ |
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 2442 if (overflow2(sizeof(int), srcW)) { in gdImageCopyResized() 2449 stx = (int *) gdMalloc (sizeof (int) * srcW); in gdImageCopyResized() 2453 for (i = 0; (i < srcW); i++) { in gdImageCopyResized() 2454 stx[i] = dstW * (i+1) / srcW - dstW * i / srcW ; in gdImageCopyResized() 2466 for (x = srcX; (x < (srcX + srcW)); x++) { 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() 2558 sx1 = ((double) x - (double) dstX) * (double) srcW / dstW; in gdImageCopyResampled() 2559 sx2 = ((double) (x + 1) - (double) dstX) * (double) srcW / dstW; in gdImageCopyResampled()
|
H A D | gd.h | 708 …t, gdImagePtr src, int dstX, int dstY, int srcX, int srcY, int dstW, int dstH, int srcW, int srcH); 719 …t, gdImagePtr src, int dstX, int dstY, int srcX, int srcY, int dstW, int dstH, int srcW, int srcH);
|
Completed in 25 milliseconds