背景图填充白色背景
$white = imagecolorallocate($dstim,255,255,255); imagefilledrectangle($dstim,0,0,$width,$height,$white); imagecolortransparent($dstim,$white);
设置图片走透明通道
$img = imagecreatefrompng($src);...
背景图填充白色背景
$white = imagecolorallocate($dstim,255,255,255); imagefilledrectangle($dstim,0,0,$width,$height,$white); imagecolortransparent($dstim,$white);
设置图片走透明通道
$img = imagecreatefrompng($src);...