LoginSignup
6
6

More than 5 years have passed since last update.

ImagikでPDFファイルからサムネイル画像を作る

Posted at

phpにImageMagickをインストールしておいてから、以下のようなソースで生成できる。(php5.6で確認)

$file = '/Users/mymac/Desktop/my.pdf';
$output = '/Users/mymac/Desktop/my.png'; 

$im = new Imagick($file . '[2]');
$im->setImageFormat('png');
$im->thumbnailImage(300, 300, true);
$im->writeImage($output);

[2] ってのは3ページ目って意味です。

6
6
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
6
6