Problem to convert pdf / doc to preview images
you need to install - ImageMagick - GhostScript
Create GIF thumbnail of the first PDF page
<?php //the path to the PDF file $strPDF = "my_pdf.pdf"; exec("convert \"{$strPDF}[0]\" -colorspace RGB -geometry 200 \"output.gif\""); ?>
Create JPEG thumbnails of all pages in PDF
<?php //the path to the PDF file $strPDF = "my_pdf.pdf"; exec("convert \"{$strPDF}\" -colorspace RGB -geometry 200 \"output.jpg\""); ?>
Create Large PNG 1024px First Page Image PDF
<?php //the path to the PDF file $strPDF = "my_pdf.pdf"; exec("convert \"{$strPDF}[0]\" -colorspace RGB -geometry 1024 \"output.png\""); ?>
Create large PNG images of 1024px ALL pages in PDF
<?php //the path to the PDF file $strPDF = "my_pdf.pdf"; exec("convert \"{$strPDF}\" -colorspace RGB -geometry 1024 \"output.png\""); ?>
source share