<?php
bool public ImagickDraw::setStrokeWidth(
float $stroke_width
);
?>
<?php
$stroke_width = the float value
$draw = new ImagickDraw();
$draw->setStrokeWidth($stroke_width);
// continues on the next page...
?>