Hello,
Zoom search result page can show images. If Zoom find a PDF as a result, it can show the image preview of the first age of the PDF. The PHP code to do it is like this:
Can you help me to insert it in search.php page? (versions 6 and 7)
Zoom search result page can show images. If Zoom find a PDF as a result, it can show the image preview of the first age of the PDF. The PHP code to do it is like this:
PHP Code:
$im = new imagick('file.pdf[0]'); //zero is the first page of the PDF
$im->setImageFormat('jpg');
header('Content-Type: image/jpeg');
echo $im;
Comment