我遇到了关于 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字体?