第一步
安裝
在基於 Debian 的系統上使用 apt
sudo apt-get install php5-imagick
在 OSX / macOs 上使用 Homebrew
brew install imagemagick
要檢視使用 brew
方法安裝的依賴項,請訪問 brewformulas.org/Imagemagick 。
使用二進位制版本
imagemagick 網站上的說明。
用法
<?php
$imagen = new Imagick('imagen.jpg');
$imagen->thumbnailImage(100, 0);
//if you put 0 in the parameter aspect ratio is maintained
echo $imagen;
?>