Hello,
I try to use imagick (imagemagick) to convert a SVG to a PNG image. I use the code
$im = new Imagick();
$im->setBackgroundColor(new ImagickPixel('transparent'));
$im->readimage($blumsvg);
$im->setImageFormat("png32");
$im->resizeImage(200, 200, imagick::FILTER_LANCZOS, 0);
$im->writeimage ...
Search found 1 match
- 2018-07-08T08:18:07-07:00
- Forum: IMagick
- Topic: svg problems
- Replies: 1
- Views: 101848