diff options
| author | Egon Schmid <eschmid@php.net> | 2000-03-13 20:36:59 +0000 |
|---|---|---|
| committer | Egon Schmid <eschmid@php.net> | 2000-03-13 20:36:59 +0000 |
| commit | 69c2faf5109ba2422c0662f57906cbc844e76677 (patch) | |
| tree | 25aa1274dc301e121f818bdfa5c10d5d20f2cc1a /ext | |
| parent | 84569c08fcce17675cd49b0124333902ba9c8fc4 (diff) | |
| download | php-git-69c2faf5109ba2422c0662f57906cbc844e76677.tar.gz | |
Fixed some protos.
Diffstat (limited to 'ext')
| -rw-r--r-- | ext/gd/gd.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/ext/gd/gd.c b/ext/gd/gd.c index b471daa372..57f1c57b63 100644 --- a/ext/gd/gd.c +++ b/ext/gd/gd.c @@ -419,7 +419,7 @@ PHP_FUNCTION(imagecreate) #ifdef HAVE_GD_PNG /* {{{ proto int imagecreatefrompng(string filename) - Create a new image from file or URL */ + Create a new image from PNG file or URL */ PHP_FUNCTION(imagecreatefrompng) { zval **file; @@ -454,7 +454,7 @@ PHP_FUNCTION(imagecreatefrompng) /* }}} */ /* {{{ proto int imagepng(int im [, string filename]) - Output image to browser or file */ + Output PNG image to browser or file */ PHP_FUNCTION(imagepng) { zval **imgind, **file; @@ -524,7 +524,7 @@ PHP_FUNCTION(imagepng) #ifdef HAVE_GD_GIF /* {{{ proto int imagecreatefromgif(string filename) - Create a new image from file or URL */ + Create a new image from GIF file or URL */ PHP_FUNCTION(imagecreatefromgif ) { zval **file; @@ -564,7 +564,7 @@ PHP_FUNCTION(imagecreatefromgif ) /* }}} */ /* {{{ proto int imagegif(int im [, string filename]) - Output image to browser or file */ + Output GIF image to browser or file */ PHP_FUNCTION(imagegif) { zval **imgind, **file; @@ -677,7 +677,7 @@ PHP_FUNCTION(imagecreatefromjpeg) /* }}} */ /* {{{ proto int imagejpeg(int im [, string filename [, int quality]]) - Output image to browser or file */ + Output JPEG image to browser or file */ PHP_FUNCTION(imagejpeg) { zval **imgind, **file, **qual; @@ -1682,7 +1682,7 @@ PHP_FUNCTION(imagestringup) { } /* }}} */ -/* {{{ proto int imagecopy(int dst_im, int src_im, int dstX, int dstY, int srcX, int srcY, int srcW, int srcH) +/* {{{ proto int imagecopy(int dst_im, int src_im, int dst_x, int dst_y, int src_x, int src_y, int src_w, int src_h) Copy part of an image */ PHP_FUNCTION(imagecopy) { @@ -1720,7 +1720,7 @@ PHP_FUNCTION(imagecopy) } /* }}} */ -/* {{{ proto int imagecopyresized(int dst_im, int src_im, int dstX, int dstY, int srcX, int srcY, int dstW, int dstH, int srcW, int srcH); +/* {{{ 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 */ PHP_FUNCTION(imagecopyresized) { |
