Search found 2 matches

by bubu
2013-02-20T13:15:43-07:00
Forum: Developers
Topic: Problem converting svg with clippath to png
Replies: 2
Views: 13514

Re: Problem converting svg with clippath to png

Thank you for your reply. I managed to solve my problem using another image as a mask. So this topic can be closed.


$mask = new Imagick('mask.png');
$im = new Imagick();
//$im->setBackgroundColor(new ImagickPixel('transparent'));
$im->readImageBlob($svg);
$im->setImageFormat("png32");
$im ...
by bubu
2013-02-20T02:09:46-07:00
Forum: Developers
Topic: Problem converting svg with clippath to png
Replies: 2
Views: 13514

Problem converting svg with clippath to png

Hi, I'm new working with imagemagick and I have a problem converting svg that contains a clippath to png. Any help is appreciated. Is urgent because I spent the last 2 days searching and testing with no result yet.

This is the svg:

<svg version="1.1" width="340" height="470">

<clipPath id ...