Convert pdf to image using imagebrick

WBOY
Release: 2016-07-25 08:42:39
Original
1019 people have browsed it
  1. $pdf_file = './pdf/demo.pdf';
  2. $save_to = './jpg/demo.jpg'; //make sure that apache has permissions to write in this folder! (common problem)
  3. //execute ImageMagick command 'convert' and convert PDF to JPG with applied settings
  4. exec('convert "'.$pdf_file.'" -colorspace RGB -resize 800 "'.$save_to.'"', $output, $return_var);
  5. if($return_var == 0) { //if exec successfuly converted pdf to jpg
  6. print "Conversion OK";
  7. }
  8. else print "Conversion failed.
    ".$output;
  9. ?>
复制代码

转成, imagebrick, pdf


source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!