php method to convert PDF files to JPG files using Image Magick
This is a very simple format conversion code that can convert .PDF files into .JPG files, code To work, the server must have the Image Magick extension installed.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
$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;
|
1
2
3
4
5
6
7
8
9
10
11
1213
14
|
$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 successfully converted pdf to jpg
print "Conversion OK";
}
else print "Conversion failed.".$output;
|
http://www.bkjia.com/PHPjc/977614.htmlwww.bkjia.comtruehttp: //www.bkjia.com/PHPjc/977614.htmlTechArticlephp method to convert PDF files to JPG files using Image Magick This is a very simple format conversion code that can Convert .PDF files to .JPG files. For the code to work, the server must...