0

我正在尝试将 SVG 转换为 PNG,但我遇到了麻烦。

使用此链接,您可以上传 SVG,文件将显示结果: http ://clound.com.br/labs/svg/export/imagick/index.php

我要上传的 SVG 是这样的: http ://clound.com.br/labs/svg/export/images/cover.svg

我在上传页面上的代码是这样的:

<?php
if ( $_FILES ){
$target_path = 'output/'. basename( $_FILES['uploadedfile']['name']);
$mime = $_FILES['uploadedfile']['type'];

if ( $_FILES['uploadedfile']['error'] ){
    die( 'Error on upload.');
}

if ( move_uploaded_file( $_FILES['uploadedfile']['tmp_name'], $target_path ) ){
    echo '<embed style="border:solid 1px gray;" src="'.$target_path.'" type="image/svg+xml" pluginspage="http://www.adobe.com/svg/viewer/install/" /><br / >';


    $im = new Imagick();
    $svg = file_get_contents($target_path);

    /*loop to color each state as needed, something like*/ 
    $dom = new DOMDocument(); 
    $dom->loadXML( $svg ); 

    removeFillRule($dom, 'g');
    removeFillRule($dom, 'mask');
    removeFillRule($dom, 'path');
    removeFillRule($dom, 'image');

    $svg = $dom->saveXML();
    echo $svg;

    $im->readImageBlob($svg);

    /*png settings*/
    $im->setImageFormat("png32");
    $im->writeImage('output/image.png');/*(or .jpg)*/
    $im->clear();
    $im->destroy();

    echo '<img src="output/image.png"/><br/>';
}
else
{
    echo "There was an error uploading the file, verify permission and try again!";
}
}




function remove_children(&$node) {
while ($node->firstChild) {
while ($node->firstChild->firstChild) {
  remove_children($node->firstChild);
}
$node->removeChild($node->firstChild);
}
}


function removeFillRule($dom, $element){
$path = $dom->getElementsByTagName($element);
foreach ($path as  $key=> $value) {
    $path->item($key)->removeAttribute('fill-rule');
}
}

我在服务器上的版本是这样的:

ImageMagick 6.7.6-8 2012-05-02 Q16http://www.imagemagick.org

4

1 回答 1

0

删除填充规则?那会破坏一些svgs,只是说。我很好奇,这是imagemagick中某些错误的解决方法吗?

无论如何,猜测是您的问题是 imagemagick 可能不支持填充/描边中的 rgba-syntax - 默认情况下会使填充变为黑色。

于 2012-12-31T10:56:10.457 回答