<?php
bool public ImagickDraw::setStrokeColor(
ImagickPixel $stroke_pixel
);
?>
<?php
// 'color-name', '#XXYYZZ', rgb(X,Y,Z), rbga(X%,Y%,Z%,A), cmyck(X,Y,Z,K)
$stroke_color = '#000000'; // black
$stroke_width = the float value
$draw = new ImagickDraw();
$draw->setStrokeWidth($stroke_width);
$draw->setStrokeColor($stroke_color);
// continues on the next page...
?>