PDF'NIN thumnails dosyaları oluşturma

0 Cevap php

How do I convert a PDF document to a preview image in PHP?: Bu soruya bir uzantısı olarak

<?php
$im = new imagick('file.pdf[0]');
$im->setImageFormat( "jpg" );
header( "Content-Type: image/jpeg" );
echo $im;
?>

Nasıl PDF yılların sunucudaki dosyaları oluşturmak için yukarıdaki soruya gelen kodu kullanabilirsiniz. Yukarıdaki kod sadece görüntüyü gösterir.

0 Cevap