当前位置:Gxlcms > PHP教程 > php pdf如何转jpg

php pdf如何转jpg

时间:2021-07-01 10:21:17 帮助过:75人阅读

php pdf转jpg的方法:首先安装Image Magick扩展;然后通过“exec('convert "'.$pdf_file.'" -colorspace RGB -resize 800 "'...)”方式进行转换即可。

推荐:《PHP视频教程》

这是一个非常简单的格式转换代码,可以把.PDF文件转换为.JPG文件,代码要起作用,服务器必须要安装Image Magick 扩展。

$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.".$output;

以上就是php pdf如何转jpg的详细内容,更多请关注gxlcms其它相关文章!

人气教程排行