ImageDriverの設定

画像のサムネイル作成を自動で行うにはImageDriverの設定が必要になります。
Image:Magickがデフォルトですが、ここではGDを利用します。

●GDのインストール

・GDのダウンロード
$ wget http://www.boutell.com/gd/http/gd-2.0.33.tar.gz

・GDのインストール
$ tar xozf gd-2.0.33.tar.gz
$ cd gd-2.0.33
$ ./configure --with-freetype=/usr/local/lib --with-png=/usr/local/lib --with-jpeg=/usr/local/lib
$ make
$ su
# make install

・GDのPerlモジュールのインストール
$ wget http://search.cpan.org/CPAN/authors/id/L/LD/LDS/GD-2.53.tar.gz
$ tar xozf GD-2.53.tar.gz
$ cd GD-2.53
$ perl Makefile.PL

※SolarisではMakefileを下記のように修正
CCCDLFLAGS =
OPTIMIZE =

$ make
$ make test
# make install

・Solarisライブラリパスの設定
# crle -c /var/ld/ld.config -l /lib:/usr/lib:/usr/local/lib:/opt/csw/lib
# crle (確認)
Configuration file [version 4]: /var/ld/ld.config
  Platform:     32-bit LSB 80386
  Default Library Path (ELF):   /lib:/usr/lib:/usr/local/lib:/opt/csw/lib
  Trusted Directories (ELF):    /lib/secure:/usr/lib/secure  (system default)

Command line:
  crle -c /var/ld/ld.config -l /lib:/usr/lib:/usr/local/lib:/opt/csw/lib

●MovableTypeの環境設定
$ cd (movable-type-dir)/
$ vi mt-config.cgi
以下を追加
ImageDriver GD

これで画像追加時にサムネイル作成ができるようになります。

うまく動かない場合は、mt-check.cgiにアクセスすることで、モジュールのインストール状況やエラー等が確認できます。

トラックバック(0)

トラックバックURL: http://kirihari.net/mt/mt-tb.cgi/125

コメントする