2

I have been working to create thumbnail for pdf file. I have used below link for installation and configuration of ImageMagick installation and configuration of ImageMagick and code I have used below code to for conversion of pdf file to thumbnail

<?php
 exec("C:/ImageMagick-6.8.0-Q16/convert.exe a.pdf -resize 546x274^ -quality 80 temp.jpg 2>&1", $array);  

?>

It is not converting but it is converting images. The code is

<?php
 exec("C:/ImageMagick-6.8.0-Q16/convert.exe a.jpg -resize 546x274^ -quality 80 temp.jpg 2>&1", $array);  
?>

Can any one please help me to create thumbnail for pdf file .Thanks in advance.

4

2 に答える 2

0

私は自分のサーバーで組み込みのPHP呼び出しを使用しています。これは私のために働きます。

 if(!file_exists(THUMBS_DIR . $name . "." . $out_format))
    {            
        $im = new imagick();
        $im->setResolution(300,300);
        $im->readImage(ABS_PATH . $path);
        //$im->setImageColorspace(255);
        //$im->adaptiveSharpenImage(2,1);
        //$im->setCompression(Imagick::COMPRESSION_JPEG);
        $im->setCompressionQuality(100);
        $im->resizeImage(700,1000,Imagick::FILTER_LANCZOS,1, TRUE);
        $im->setImageFormat($out_format);
        $im->writeImage(THUMBS_DIR . $name . "." . $out_format);
        $im->clear();
        $im->destroy();
    }
于 2012-12-05T21:02:00.160 に答える
0

TYPO3 CMS の「PDF サムネイル生成問題」を解決するための詳細な手順が記載された無料の直接ダウンロード PDF テスト ファイルは、Smargasy, Inc. で入手できます。 Compatibility-Test-File.pdf ". テスト ファイルは、共有ホスティング環境でイメージ処理および変換プログラムとして ImageMagick および GhostScript を使用するシステムの問題を特定するのに役立ちます。

これは問題の解決にも役立つはずです。これは、PHP スクリプトの例と、テスト用の標準準拠の PDF ファイルの例の両方を使用したソリューションであるためです。

敬具、マイケル・ブライス

于 2013-11-03T06:40:00.680 に答える