PNG与透明背景=与黑色背景的缩略图

时间:2016-08-22 18:40:14

标签: php png transparency

你能支持我吗? 我有以下脚本,以创建一个缩略图,工作正常! 但是,当我上传具有透明背景的PNG文件时,由于某种原因,背景会变为黑色。

<?php
// Function for resizing jpg, gif, or png image files
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);
}
?>

如果PNG的背景透明,我也需要缩略图透明,你能支持我吗?  任何帮助都会很棒!

提前致谢

2 个答案:

答案 0 :(得分:0)

尝试替换它:

imagejpeg($tci, $newcopy, 80);

由此:

imagegif($tci, $newcopy, 80);

或等效功能取决于图像格式:

Imagepng

Imagegif

Imagejpeg

Imagebmp

答案 1 :(得分:0)

使用:

{"id":"2","name":"john","text":"john","parent_id":"0","children":true}]

相反:

$tci = imagecreate($w, $h);

我的问题现在已经解决了:)