4

我需要一个 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,只是半透明区域是个问题。

如果我没有使用正确的术语来解释我的问题,我深表歉意,也许这就是我几乎找不到任何东西的原因。

4

1 回答 1

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;
}

基于(我知道它有效)。

于 2012-04-03T09:22:15.913 回答