Say I have the following code:
$draw = new ImagickDraw(); // prep text
$draw->setFillColor('#00ff00');
$draw->setFontSize(12);
$draw->setStrokeWidth(4);
$draw->setStrokeColor(new ImagickPixel('#ff0000'));
// etc.
$image = new Imagick(); // prep image
// etc.
// add text to image
$image->annotateImage($draw, 10, 10, 0, 'Hello, World!');
And let's assume that it works (which it does - I've just cut it down here). Is there a simple way for me to, say, change the stroke width on a per-character basis?
I'm looking into using something like $image->queryFontMetrics($text, 'H')) but wondered if there was a simpler way.
Thanks!