1

我遇到了关于 imagick 读取 svg 文本的问题,如下所示:

$xmlDoc = new DOMDocument();
$svgroot = $xmlDoc->createElement('svg');
$textnode = $xmlDoc->createElement('text');
$textnode->setAttribute('font-size','24');
$textnode->setAttribute('transform','matrix(3.1054,0,0,3.1054,158.5,0)');
$textnode->setAttribute('font-family','helvetica');
$textnode->appendChild($xmlDoc->createTextNode("eeee"));

$textnode = $svgroot->appendChild($textnode);
$xmlDoc->appendChild($svgroot);

$svgtext = new Imagick();
$svgtext->setbackgroundcolor('#00000000');

$svgtext->readImageBlob($xmlDoc->saveXML());

它将在 readImageBlob 函数的最后一行抛出异常(“helvetica”字体已安装在 windows/fonts 中。)。它说:

  Uncaught exception 'ImagickException' with message 'must specify image size `C:/DOCUME~1/ADMINI~1/LOCALS~1/Temp/1/magick-270886DDFFPHkGTr' @ error/mvg.c/ReadMVGImage/185' in C:\xampp\htdocs\opencart\imagicktest.php:106 Stack trace: #0 C:\xampp\htdocs\opencart\imagicktest.php(106): Imagick->readimageblob('<?xml version="...') #1 {main} thrown in C:\xampp\htdocs\opencart\imagicktest.php on line 106

这个bug只在windows server 2003下才有。在winXP下运行imageMagic时不会抛出这个异常。我认为这个错误类似于https://bugzilla.redhat.com/show_bug.cgi?id=193474

可能是windows2003需要安装一些东西来支持imagick render svg字体?

4

1 回答 1

-1

由于ImagickExceptionsvg元素中缺少图像大小属性,因此抛出 。不同版本的 ImageMagick 和 SVG 系统库将有助于您体验到的行为。要解决此问题 - 只需使用 、 和 & 属性指定viewBox图像x尺寸y

$xmlDoc = new DOMDocument();
$svgroot = $xmlDoc->createElement('svg');
$svgroot->setAttribute('viewBox','0 0 60 24'); // Set the viewable canvas
$svgroot->setAttribute('x',0);                 // Left offset
$svgroot->setAttribute('y',16);                // Top offset 
$svgroot->setAttribute('width',60);            // Optional rendering width
$svgroot->setAttribute('hieght',24);           // Optional rendering height
于 2013-02-26T14:35:04.400 回答