From 36739de37f8671c3d499c88c3059b515d610491b Mon Sep 17 00:00:00 2001 From: Philip Olson Date: Mon, 20 Jan 2003 01:36:05 +0000 Subject: [PATCH] Clarified vertices a little (closes bug #21086) and see also imagecreatetruecolor. git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@112757 c90b9560-bf6c-de11-be94-00142212c4b1 --- reference/image/functions/imagepolygon.xml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/reference/image/functions/imagepolygon.xml b/reference/image/functions/imagepolygon.xml index e3d9465302..7ae50ac417 100644 --- a/reference/image/functions/imagepolygon.xml +++ b/reference/image/functions/imagepolygon.xml @@ -1,5 +1,5 @@ - + @@ -20,10 +20,11 @@ points is a PHP array containing the polygon's vertices, ie. points[0] = x0, points[1] = y0, points[2] = x1, points[3] = y1, etc. num_points is - the total number of vertices. + the total number of points (vertices). - See also imagecreate. + See also imagecreate and + imagecreatetruecolor.