ImageMagick转换SVG文件会产生空白图像

时间:2015-04-22 15:44:46

标签: imagemagick

我正在尝试使用以下命令使用ImageMagick为内部图像转换带有xlink:href的SVG文件:

convert file.png result.png

但这给了我一个空白的png文件,我确信问题来自图像,因为其他指令显示在png文件中。我可以使用命令来实现它:

convert msvg:file.svg result.png

有人知道如何在没有“msvg:”部分的情况下完成这项工作吗?因为我必须在php-Imagick之后执行此操作,我无法在我的php代码中添加“msvg:”。

SVG文件:

<?xml version="1.0"?>
<svg id="svg" width="1024" height="1024" preserveAspectRatio="xMinYMin">
    <image id="svg-image" x="0" y="0" width="1024" height="1024" product_id="4" xlink:href="coeur.png">
    </image>
    <rect x="10" y="10" width="80" height="80" fill="red"/>
</svg>

ImageMagick版本:6.7.7.10-5 + deb7u3

输出“convert -list format | grep SVG”:

MSVG  SVG       rw+   ImageMagick's own SVG internal renderer
SVG  SVG       rw+   Scalable Vector Graphics (RSVG 2.36.1)
SVGZ  SVG       rw+   Compressed Scalable Vector Graphics (RSVG 2.36.1)

Php代码:

$im = new Imagick();
$draw = new ImagickDraw();
$im->readImageBlob($svgParse->asXML());
$im->setImagePage(0, 0, 0, 0);
$im->scaleImage($viewBox['2'],$viewBox['3'], false);
foreach($ListText as $text){
   $draw->setFont(Mage::getBaseDir('media').DS.'font'.DS.$text['font-family'].".ttf");
   $draw->setFontSize( $text['font-size'] );
   $draw->setFillColor ( $text['fill']);
   $im->annotateImage($draw, $text['x'], $text['y'], 0, $text['text']);
}
/*png settings*/
$im->setImageFormat("png32");
// FB image
$imFB = clone $im;
$imFB->resizeImage(1200,630,Imagick::FILTER_LANCZOS,1);
$imFB->writeImage($filename_FB);
$imFB->clear();
$imFB->destroy();
// TW image
$imTW = clone $im;
$imTW->resizeImage(280,150,Imagick::FILTER_LANCZOS,1);
$imTW->writeImage($filename_TW);
$imTW->clear();
$imTW->destroy();

$im->writeImage($filename);/*(or .jpg)*/

$im->clear();
$im->destroy();

1 个答案:

答案 0 :(得分:1)

emcconvilutionle的回答是解决方案,我只需要写

$im->setFormat('MSVG');

之前

$im->readImageBlob($svgParse->asXML());