ImageMagickでサムネイル

とりあえず、画像を読み込んで、縮小して、保存のメモです。Imagick2です。

[php]
$imagick = new Imagick();
$imagick->readImage(LOAD_FILE_NAME);
# $imagick->setimageformat(‘jpg’);
$width = 400;
$height = 300;
$imagick->thumbnailimage($width, $height);
$imagick->writeImage(SAVE_FILE_NAME);
[/php]

一通りのことは出来るんですが、詳しいドキュメントが欲しいですね。

関連する記事:

Powered by

Leave a Comment


NOTE - You can use these HTML tags and attributes:
<a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <strike> <strong> <pre lang="" line="" escaped="" highlight="">