php 使用使用 imagebrick将pdf转成图片
使用使用 imagebrick将pdf转成图片 [代码片段(10行)]
<?php $pdf_file = './pdf/demo.pdf'; $save_to = './jpg/demo.jpg'; //make sure that apache has permissions to write in this folder! (common problem) //execute ImageMagick command 'convert' and convert PDF to JPG with applied settings exec('convert "'.$pdf_file.'" -colorspace RGB -resize 800 "'.$save_to.'"', $output, $return_var); if($return_var == 0) { //if exec successfuly converted pdf to jpg print "Conversion OK"; } else print "Conversion failed.<br />".$output; ?>
- 上一篇:php 从 PHP 数据创建 CSV 文件
- 下一篇:php的web路径获取
精彩图集
精彩文章