--TEST-- Test ImagickDraw, setTextDecoration --SKIPIF-- --FILE-- setStrokeColor($strokeColor); $draw->setFillColor($fillColor); $draw->setStrokeWidth(2); $draw->setFontSize(72); $draw->setTextDecoration($textDecoration); $draw->annotation(50, 75, "Lorem Ipsum!"); $imagick = new \Imagick(); $imagick->newImage(500, 500, $backgroundColor); $imagick->setImageFormat("png"); $imagick->drawImage($draw); $bytes = $imagick->getImageBlob(); if (strlen($bytes) <= 0) { echo "Failed to generate image.";} } setTextDecoration($strokeColor, $fillColor, $backgroundColor, $textDecoration) ; echo "Ok"; ?> --EXPECTF-- Ok