2000字范文,分享全网优秀范文,学习好帮手!
2000字范文 > jpg php php转换PDF为JPG

jpg php php转换PDF为JPG

时间:2023-01-06 01:13:00

相关推荐

jpg php php转换PDF为JPG

php如何转换PDF为JPG?本文主要介绍了php使用Image Magick将PDF文件转换为JPG文件的方法,涉及php使用Image Magick扩展操作图片的技巧。希望对大家有所帮助。

具体如下:

这是一个非常简单的格式转换代码,可以把.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;

相关推荐:

本内容不代表本网观点和政治立场,如有侵犯你的权益请联系我们处理。
网友评论
网友评论仅供其表达个人看法,并不表明网站立场。