Image resize issue in PHP - gd creates ugly resized images

前端 未结 5 586
旧时难觅i
旧时难觅i 2020-12-17 00:54

I am creating thumbnails of fixed height and width from my PHP script using the following function

/*creates thumbnail of required dimensions*/
function crea         


        
5条回答
  •  小蘑菇
    小蘑菇 (楼主)
    2020-12-17 01:24

    You could also consider using ImageMagick (http://us3.php.net/manual/en/book.imagick.php) instead of Gd. I had the same problem just a couple of days ago with Java. Going for ImageMagick instead of Java Advanced Images resultet in a huge quality difference.

提交回复
热议问题