douketangyouzh5219 2015-07-23 14:51
浏览 167
已采纳

上传png图像黑色背景

When i upload a png image with php, the background color of the image is setted to black.
I tried to set it to transparent background but it doesn't work.
This is my code :

if( $image_type == IMAGETYPE_PNG )
{
    $dst_r = ImageCreateTrueColor($targ_w, $targ_h);
    imagealphablending($dst_r, false);
    imagesavealpha($dst_r, true);
    imagefill($dst_r,0,0,imagecolorallocatealpha($dst_r, 0,0,0,127));
    imagecopyresampled($dst_r, $this->image, 0, 0, $targ_x, $targ_y, $targ_w, $targ_h, $targ_w, $targ_h);
    imagepng($dst_r,$filename, 9);
}

Edited:

I tought i'v finished with this problem but i was wrong:

$targ_w_thumb = $targ_h_thumb = 220;
if($image_type == IMAGETYPE_PNG)
{
    $dst_r = ImageCreateTrueColor($targ_w_thumb, $targ_h_thumb);
    imagealphablending($dst_r, false);
    imagesavealpha($dst_r, true);
    imagefill($dst_r,0,0,imagecolorallocatealpha($dst_r, 0,0,0,127));
    imagecopyresampled($dst_r, $this->image, 0, 0, $targ_x, $targ_y, $targ_w_thumb, $targ_h_thumb, $targ_w, $targ_h);
    imagepng($dst_r,$filename, 9);
}
  • 写回答

2条回答 默认 最新

  • dshdb64088 2015-07-24 01:29
    关注

    I dont know why but when i added targ_w_thumb its work fine + imagefill():

        $targ_w_thumb = $targ_w_thumb = 200;
        $dst_r = ImageCreateTrueColor($targ_w_thumb, $targ_h_thumb);
        imagealphablending($dst_r, false);
        imagesavealpha($dst_r, true);
        imagefill($dst_r,0,0,imagecolorallocatealpha($dst_r, 0,0,0,127));
        imagecopyresampled($dst_r, $this->image, 0, 0, $targ_x, $targ_y, $targ_w_thumb, $targ_h_thumb, $targ_w, $targ_h);
        imagepng($dst_r,$filename, 9);
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)
编辑
预览

报告相同问题?

手机看
程序员都在用的中文IT技术交流社区

程序员都在用的中文IT技术交流社区

专业的中文 IT 技术社区,与千万技术人共成长

专业的中文 IT 技术社区,与千万技术人共成长

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

客服 返回
顶部