PNG Transparency Resize with SimpleImage.php Class

前端 未结 4 1957
一个人的身影
一个人的身影 2020-12-05 08:51

I\'m using a modified version of the SimpleImage.php class: http://www.white-hat-web-design.co.uk/articles/php-image-resizing.php

The edits I found on phpfreaks (htt

4条回答
  •  春和景丽
    2020-12-05 09:18

    I haven't been playing with GD for a long time myself (I prefer Imagemagick), but you could try setting alpha also to the source image before copying:

    ...
    // ADDED CODE IS HERE ..
    imagealphablending($this->image, true);
    ...
    

    HTH.

提交回复
热议问题