cvs: php4 /ext/gd/ gd.c
[email protected] ("Hartmut Holzgraefe")
| Newsgroups | php.version4 |
|---|---|
| Message-ID | <cvshholzgra959120887@cvsserver> |
hholzgra Wed May 24 00:28:07 2000 EDT
Modified files:
/php4/ext/gd gd.c
Log:
added a missing proto
Index: php4/ext/gd/gd.c
diff -u php4/ext/gd/gd.c:1.60 php4/ext/gd/gd.c:1.61
--- php4/ext/gd/gd.c:1.60 Tue May 23 11:33:36 2000
+++ php4/ext/gd/gd.c Wed May 24 00:28:07 2000
@@ -18,7 +18,7 @@
+----------------------------------------------------------------------+
*/
-/* $Id: gd.c,v 1.60 2000/05/23 09:33:36 sas Exp $ */
+/* $Id: gd.c,v 1.61 2000/05/23 22:28:07 hholzgra Exp $ */
/* gd 1.2 is copyright 1994, 1995, Quest Protein Database Center,
Cold Spring Harbor Labs. */
@@ -1051,6 +1051,8 @@
}
/* }}} */
+/* {{{ proto int imagegammacorrect(int im, double inputgamma, double outputgamma)
+ Apply a gamma correction to a GD image */
PHP_FUNCTION(imagegammacorrect)
{
zval **IM, **inputgamma, **outputgamma;
@@ -1076,6 +1078,7 @@
RETURN_TRUE;
}
+/* }}} */
/* {{{ proto int imagesetpixel(int im, int x, int y, int col)
Set a single pixel */