diff --git a/reference/image/functions/imagecolorresolve.xml b/reference/image/functions/imagecolorresolve.xml index 9c084146bd..6f17793148 100644 --- a/reference/image/functions/imagecolorresolve.xml +++ b/reference/image/functions/imagecolorresolve.xml @@ -1,5 +1,5 @@ - + imagecolorresolve @@ -74,8 +74,8 @@ $im = imagecreatefromgif('phplogo.gif'); // Get closest colors from the image $colors = array(); -$colors[] = imagecolorresolve($im, 255, 255, 255, 0); -$colors[] = imagecolorresolve($im, 0, 0, 200, 127); +$colors[] = imagecolorresolve($im, 255, 255, 255); +$colors[] = imagecolorresolve($im, 0, 0, 200); // Output print_r($colors);