PHP图像调整黑色背景 - 改变颜色

时间:2011-12-14 21:49:40

标签: php image resize

所以我正在使用此代码动态调整图像大小并创建它的副本。

function ak_img_resize($target, $newcopy, $w, $h, $ext) {
    list($w_orig, $h_orig) = getimagesize($target);
    $scale_ratio = $w_orig / $h_orig;
    if (($w / $h) > $scale_ratio) {
           $w = $h * $scale_ratio;
    } else {
           $h = $w / $scale_ratio;
    }
    $img = "";
    $ext = strtolower($ext);
    if ($ext == "gif"){ 
      $img = imagecreatefromgif($target);
    } else if($ext =="png"){ 
      $img = imagecreatefrompng($target);
    } else { 
      $img = imagecreatefromjpeg($target);
    }
    $tci = imagecreatetruecolor($w, $h);
    // imagecopyresampled(dst_img, src_img, dst_x, dst_y, src_x, src_y, dst_w, dst_h, src_w, src_h)
    imagecopyresampled($tci, $img, 0, 0, 0, 0, $w, $h, $w_orig, $h_orig);
    imagejpeg($tci, $newcopy, 80);
}

但我不喜欢的是它提供了默认的黑色背景。如何将黑色背景更改为白色

这是:

enter image description here

1 个答案:

答案 0 :(得分:2)

初始化$tci后,您可以使用imagefill()imagecolorallocate()将图片填充为白色:

$white = imagecolorallocate($tci, 255, 255, 255);
imagefill($tci, 0, 0, $white);

注意:这仅在源图像使用透明像素时才有效。