LoginSignup
1
3

More than 5 years have passed since last update.

PHPで画像変換ができるImagemagicをインストールする

Last updated at Posted at 2015-04-01

PHPで画像変換ができるImagemagicをインストールする

最初、Windows8+xamppでインストールを試みましたが上手くいかなかったので、Linuxに変更してインストールしてみました。

yumコマンドでImageMagick本体をインストールする

yum -y install ImageMagick
yum -y install ImageMagick-devel

pear/peclインストール 参考

wget http://pear.php.net/go-pear.phar
php go-pear.phar

PHPからImageMagickをコールするimagickをインストールする

pecl install imagick

php.iniへ追記

extension=imagick.so

Apache再起動

/etc/init.d/httpd restart

phpinfo()でimagickがあることを確認してインストール終了です。

実際に使用する方法

利用できる関数一覧

他にも、こちらのサイト様の解説がわかりやすかったです。

1
3
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
1
3