【发布时间】:2013-07-27 17:39:48
【问题描述】:
我正在尝试将 pdf 转换为图像文件(png、jpg、gif 无关紧要)。
但使用以下代码:
<?php
$im = new imagick('helloworld.pdf[0]');
$im->setImageFormat('png');
header('Content-Type: image/png');
echo $im;
?>
图片质量显着下降。
有没有什么方法可以在没有质量损失或质量损失很小的情况下进行转换?
【问题讨论】: