summaryrefslogtreecommitdiff
path: root/ext/gd
diff options
context:
space:
mode:
authorSterling Hughes <sterling@php.net>2000-06-25 03:06:38 +0000
committerSterling Hughes <sterling@php.net>2000-06-25 03:06:38 +0000
commit3d75fcae6893bf8db39e69fe634b93fda3b7c6be (patch)
tree418e01dad3ebd829e50022a2417b4a5f81d89cb1 /ext/gd
parentff1b4be80c72bfe2fdec566d8ee6f77070b2ba81 (diff)
downloadphp-git-3d75fcae6893bf8db39e69fe634b93fda3b7c6be.tar.gz
Proto.
Diffstat (limited to 'ext/gd')
-rw-r--r--ext/gd/gd.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/ext/gd/gd.c b/ext/gd/gd.c
index 33e827105d..7e82729f98 100644
--- a/ext/gd/gd.c
+++ b/ext/gd/gd.c
@@ -1753,7 +1753,8 @@ PHP_FUNCTION(imagecopy)
}
/* }}} */
-
+/* {{{ proto int imagecopymerge(int src_im, int dst_im, int dst_x, int dst_y, int src_x, int src_y, int src_w, int src_h, int pct)
+ */
PHP_FUNCTION(imagecopymerge)
{
zval **SIM, **DIM, **SX, **SY, **SW, **SH, **DX, **DY, **PCT;
@@ -1789,6 +1790,7 @@ PHP_FUNCTION(imagecopymerge)
gdImageCopyMerge(im_dst, im_src, dstX, dstY, srcX, srcY, srcW, srcH, pct);
RETURN_TRUE;
}
+/* }}} */
/* {{{ proto int imagecopyresized(int dst_im, int src_im, int dst_x, int dst_y, int src_x, int src_y, int dst_w, int dst_h, int src_w, int src_h)
Copy and resize part of an image */