Imagick::setStrokeWidth


wizard apg

SETS the width of the stroke used to draw object outlines.



<?php

bool 
public ImagickDraw::setStrokeWidth(
                                          
float $stroke_width
                                                              
);

?>

$stroke_width


The stroke width.





This function returns a TRUE on success.



  1 EXERCISE   

<?php

$stroke_width 
the float value

$draw 
= new ImagickDraw();

$draw->setStrokeWidth($stroke_width);

// continues on the next page...

?>