我的版有安裝 Attachment Mod,但是它產生的縮圖品質實在是不敢恭維。我的站同時有 Gallery2 相簿,一樣是用 ImageMagick,可是 Attachment 的縮圖相形之下,只能用慘烈來形容。我的正式工作和圖形處理有關,實在是不能忍受這個問題。(職業病!)
研究了一上午,終於找到問題所在。Attachment 用的 ImageMagick 參數需要修改:
代碼: 選擇全部
#
#-----[ OPEN ]---------------------------------------------
#
attach_mod/includes/functions_thumbs.php
#
#-----[ FIND ]---------------------------------------------
# around line 168
passthru($imagick . ' -quality 85 -antialias -sample ' . $new_width . 'x' . $new_height . ' "' . str_replace('\\', '/', $source) . '" +profile "*" "' . str_replace('\\', '/', $new_file) . '"');
#
#-----[ REPLACE WITH ]---------------------------------------
#
passthru($imagick . ' -quality 85 -geometry ' . $new_width . 'x' . $new_height . ' "' . str_replace('\\', '/', $source) . '" "' . str_replace('\\', '/', $new_file) . '"');希望這個小修正對和我一樣龜毛的人有幫助。




