Search found 1 match

by imagemagician
2013-03-22T10:36:27-07:00
Forum: IMagick
Topic: problems when creating a .png out of a vector file
Replies: 0
Views: 7510

problems when creating a .png out of a vector file

I want to create a png file out of a vector file (for example an .eps file).
So I wrote this coding:


$image = new Imagick();
$image->readImage(__DIR__ . DIRECTORY_SEPARATOR . $normalfile);
$image->setImageFormat("png");
$image->resizeImage(100, 100, imagick::FILTER_LANCZOS, 1);
$image ...