diff options
-rw-r--r-- | ext/gd/gd.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ext/gd/gd.c b/ext/gd/gd.c index bd5af9004a..25685999e7 100644 --- a/ext/gd/gd.c +++ b/ext/gd/gd.c @@ -1521,7 +1521,7 @@ PHP_FUNCTION(imageistruecolor) /* }}} */ /* {{{ proto void imagetruecolortopalette(resource im, bool ditherFlag, int colorsWanted) - Convert a true colour image to a palette based image with a number of colours, optionally using dithering. */ + Convert a true color image to a palette based image with a number of colors, optionally using dithering. */ PHP_FUNCTION(imagetruecolortopalette) { zval *IM; @@ -1547,8 +1547,8 @@ PHP_FUNCTION(imagetruecolortopalette) } /* }}} */ -/* {{{ proto void imagetruecolortopalette(resource im, bool ditherFlag, int colorsWanted) - Convert a true colour image to a palette based image with a number of colours, optionally using dithering. */ +/* {{{ proto void imagepalettetotruecolor(resource im) + Convert a palette based image to a true color image. */ PHP_FUNCTION(imagepalettetotruecolor) { zval *IM; |