ImagickPixel::__construct The ImagickPixel constructor &reftitle.description; ImagickPixel::__construct stringcolor &warn.undocumented.func; Constructs an ImagickPixel object. If a color is specified, the object is constructed and then initialised with that color before being returned. &reftitle.parameters; color The optional color string to use as the initial value of this object. &reftitle.returnvalues; Returns an ImagickPixel object on success, throwing ImagickPixelException on failure. &reftitle.examples; <function>ImagickPixel::construct</function> setstrokewidth(1.0); $draw->setStrokeColor($black); $draw->setFillColor($color); $offsetX = ($count % $columns) * 50 + 5; $offsetY = intval($count / $columns) * 50 + 5; $draw->rectangle(0 + $offsetX, 0 + $offsetY, 40 + $offsetX, 40 + $offsetY); $count++; } $image = new \Imagick(); $image->newImage(350, 350, "blue"); $image->setImageFormat("png"); $image->drawImage($draw); header("Content-Type: image/png"); echo $image->getImageBlob(); } ?> ]]>