Imagick Destek Radyal Gradiyentler mu?

0 Cevap php

PROBLEM
When using Imagick::newPseudoImage to create a radial gradient, this error appears in the Apache HTTP error log and the radial gradient is not created:

PHP Fatal error: Uncaught exception 'ImagickException' with message 'Unable to create new pseudo image: radial-gradient:#FF0000-#FFFFFF' in /var/www/html/energy/scripts/rg.php:6\nStack trace:\n#0 /var/www/html/energy/scripts/rg.php(6): Imagick->newpseudoimage(150,150, 'radial-gradient...')\n#1 {main}\n thrown in /var/www/html/energy/scripts/rg.php on line 6

RESEARCH
The PHP documentation for Imagick::newPseudoImage is lacking but according to link text (search for "radial"):

RADIAL_GRADIENT...Gradual radial passing from one shade to another...Returns a rendered radial gradient image using the specified image size. Specify the desired shading as part of the filename (e.g. radial-gradient:red-blue or radial-gradient:#F00-#00F).

Yerine "radyal degrade" ve ben düşünebildiğim her kombinasyon "RADIAL_GRADIENT" kullanarak denedim. Utimately, yerine hex Imagick :: newPseudoImage RGB değerlerini beslemek ve diske oluşturulan görüntüleri kaydetmek istiyorum.

My PHP script

// Create a new imagick object.
$image = new Imagick();

// A new image with radial gradient fading from red to white, 150 by 150 pixels. $image->newPseudoImage(150,150,'radial-gradient:#FF0000-#FFFFFF');

// Set the image format to PNG.
$image->setImageFormat('png');

// Output the image.
header("Content-Type: image/png");
echo $image;

My Environment
imagick 3.0.1RC1
ImageMagick 6.2.8.0
PHP 5.2.14
RedHat Enterprise Linux 5.5

Thank you :-)

0 Cevap