PHP-GD:保留半透明区域

时间:2012-03-03 11:08:20

标签: php transparency php-gd

我需要为PHP网站上传通用图片。照片和徽标应该在一定程度上重新调整大小,以确保它们不会太大而且符合设计。

我正在尝试使用此代码:

function resize($width,$height) {
    $new_image = imagecreatetruecolor($width, $height);

    if($this->image_type == PNG or $this->image_type == GIF) {
        imagealphablending($new_image, false);
        imagesavealpha($new_image,true);
        $transparent = imagecolorallocatealpha($new_image, 255, 255, 255, 127);
        imagefilledrectangle($new_image, 0, 0, $nWidth, $nHeight, $transparent);
    }

    imagecopyresized($new_image, $this->image, 0, 0, 0, 0, $width, $height, $this->getWidth(), $this->getHeight());
    $this->image = $new_image;
}

然而,当我上传的图像的区域的alpha值介于0到255之间时,它们会被一个完整的黑色替换,将消除锯齿的区域变为黑色边框。

完全透明度适用于PNG和GIF,只有半透明区域是个问题。

如果我没有使用正确的术语来解释我的问题,我很抱歉,也许这就是为什么我几乎找不到任何东西。

1 个答案:

答案 0 :(得分:1)

尝试:

function resize($width,$height) {
    $new_image = imagecreatetruecolor($width, $height);

    if($this->image_type == PNG or $this->image_type == GIF) {
        imagefill($new_image, 0, 0, IMG_COLOR_TRANSPARENT);
        imagesavealpha($new_image,true);
        imagealphablending($new_image, true);
    }

    imagecopyresampled($new_image, $this->image, 0, 0, 0, 0, $width, $height, $this->getWidth(), $this->getHeight());
    $this->image = $new_image;
}

基于this(我知道它有效)。