I'm trying to convert a pdf to an image file (png, jpg, gif does not matter).
But using the following code:
<?php
$im = new imagick('helloworld.pdf[0]');
$im->setImageFormat('png');
header('Content-Type: image/png');
echo $im;
?>
Picture quality is degraded significantly.
Is there any way to convert it with no or very little quality loss ?