🔐 Sid Gifari File Manager Pro
v8.0.5 | 2026-08-08 23:34:01 | PHP 8.2.33
📂
/ (Root)
/
opt
/
cpanel
/
ea-php82
/
root
/
usr
/
share
/
tests
/
pecl
/
imagick
/
tests
📍 /opt/cpanel/ea-php82/root/usr/share/tests/pecl/imagick/tests
🔄 Refresh
✏️
Editing: 225_ImagickDraw_setTextDecoration_basic.phpt
Read Only
--TEST-- Test ImagickDraw, setTextDecoration --SKIPIF-- <?php $imageMagickRequiredVersion=0x675; require_once(dirname(__FILE__) . '/skipif.inc'); ?> --FILE-- <?php require_once(dirname(__FILE__) . '/functions.inc'); $backgroundColor = 'rgb(225, 225, 225)'; $strokeColor = 'rgb(0, 0, 0)'; $fillColor = 'DodgerBlue2'; $textDecoration = 2; function setTextDecoration($strokeColor, $fillColor, $backgroundColor, $textDecoration) { $draw = new \ImagickDraw(); setFontForImagickDraw($draw); $draw->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
💾 Save Changes
❌ Cancel