Searched refs:srcH (Results 1 - 3 of 3) sorted by relevance

/PHP_TRUNK/ext/gd/libgd/
H A Dgd.h679 void gdImageCopyResized(gdImagePtr dst, gdImagePtr src, int dstX, int dstY, int srcX, int srcY, int dstW, int dstH, int srcW, int srcH);
690 void gdImageCopyResampled(gdImagePtr dst, gdImagePtr src, int dstX, int dstY, int srcX, int srcY, int dstW, int dstH, int srcW, int srcH);
H A Dgd.c2345 void gdImageCopyResized (gdImagePtr dst, gdImagePtr src, int dstX, int dstY, int srcX, int srcY, int dstW, int dstH, int srcW, int srcH) argument
2359 if (overflow2(sizeof(int), srcH)) {
2364 sty = (int *) gdMalloc (sizeof (int) * srcH);
2370 for (i = 0; (i < srcH); i++) {
2371 sty[i] = dstH * (i+1) / srcH - dstH * i / srcH ;
2377 for (y = srcY; (y < (srcY + srcH)); y++) {
2455 void gdImageCopyResampled (gdImagePtr dst, gdImagePtr src, int dstX, int dstY, int srcX, int srcY, int dstW, int dstH, int srcW, int srcH) argument
2461 gdImageCopyResized (dst, src, dstX, dstY, srcX, srcY, dstW, dstH, srcW, srcH);
2465 sy1 = ((double) y - (double) dstY) * (double) srcH / (doubl
[all...]
/PHP_TRUNK/ext/gd/
H A Dgd.c1903 int srcH, srcW, dstH, dstW, srcY, srcX, dstY, dstX; local
1914 srcH = SH;
1921 gdImageCopyResampled(im_dst, im_src, dstX, dstY, srcX, srcY, dstW, dstH, srcW, srcH);
3618 int srcH, srcW, srcY, srcX, dstY, dstX; local
3629 srcH = SH;
3634 gdImageCopy(im_dst, im_src, dstX, dstY, srcX, srcY, srcW, srcH);
3646 int srcH, srcW, srcY, srcX, dstY, dstX, pct; local
3657 srcH = SH;
3663 gdImageCopyMerge(im_dst, im_src, dstX, dstY, srcX, srcY, srcW, srcH, pct);
3675 int srcH, src local
3704 int srcH, srcW, dstH, dstW, srcY, srcX, dstY, dstX; local
[all...]

Completed in 14 milliseconds