将PDF转换为TIFF,从ImageMagick转换

时间:2016-02-29 23:16:05

标签: php pdf tiff imagemagick-convert

我需要帮助将PDF文件转换为TIFF文件,我使用PHP和ImageMagick从Linux执行此操作

exec('convert -density 110 * -compress LZW out.tiff');

但这有时会失败,所以我需要知道将PDF转换为TIFF的最佳方式,不会丢失质量,或者如果有人知道更好的方法来做到这一点。

感谢。

1 个答案:

答案 0 :(得分:0)

试试Ghostscript,这里有一个例子。

<?php

$outputTiff = "/var/www/html/document.tiff";
$inputPDF = "/var/www/html/document.pdf";

//Execute the ghost script that takes the PDF as an input and saves it as tiff.
$response = exec("gs -SDEVICE=tiffg4 -r600x600 -sPAPERSIZE=letter -sOutputFile=$outputTiff -dNOPAUSE -dBATCH  $inputPDF");

?>