ImageMagick 與 GD Library 縮圖比較
很多人懶的換 ImageMagick 的原因大多是不知道好在哪裡,或是虛擬主機商並不支援。我現在把 ImageMagick 跟 GD Library 轉出來的圖貼在這邊供大家評估看看。
原圖:

GD2 Library 縮圖:

ImageMagick 縮圖:

ImageMagick 官方網站:
http://www.imagemagick.org/
Did you enjoy this post? Why not leave a comment below and continue the conversation, or subscribe to my feed and get articles like this delivered automatically to your feed reader.


可是我用的時候不會,用你的圖來測試,畫質跟第二張小圖一樣好,可能 gd 後期有改進了。
OS: CentOS 4.1
版本:gd-2.0.28-4 php-4.3.9-3.8
PHP 語法:
$im = imagecreatefromjpeg($tmp_name);
$im2 = imagecreatetruecolor ($dst_w, $dst_h);
imagecopyresampled($im2, $im, 0, 0, 0, 0, $dst_w, $dst_h, $src_w, $src_h);
header('Content-type: image/jpeg');
header('Last-Modified: '.gmdate('D, d M Y H:i:s', time()).' GMT');
imagejpeg($im2);
imagedestroy($im);
imagedestroy($im2);