我要删除图像的背景色。但是它不能正常工作。 我的代码可以部分去除背景色。
这是我的代码:
function transparent_background($filename)
{
$output_file_name = $_SERVER['DOCUMENT_ROOT'].'/test/removeBackgroundColor/'.rand(100,200).'.png';
$_filename= $_SERVER['DOCUMENT_ROOT'].'/test/removeBackgroundColor/'.$filename;
$_backgroundColour='0,0,0';
$imageData = file_get_contents($_filename);
$_img = imagecreatefromstring($imageData);
$_backgroundColours = explode(',', $_backgroundColour);
$_removeColour = imagecolorallocate($_img, (int)$_backgroundColours[0], (int)$_backgroundColours[1], (int)$_backgroundColours[2]);
imagecolortransparent($_img, $_removeColour);
imagesavealpha($_img, true);
$_transColor = imagecolorallocatealpha($_img, 0, 0, 0, 127);
imagefill($_img, 0, 0, $_transColor);
imagesavealpha($_img, true);
imagepng($_img, $output_file_name);
echo $output_file_name;
}
transparent_background('6.png');
我已将此图片作为输入传递:http://prntscr.com/nldb94
但它返回以下内容:http://prntscr.com/nldbg4
我也要删除此部分的颜色:http://prntscr.com/nldbr2
您能帮我找出解决方案吗? 预先感谢
答案 0 :(得分:0)
$_transColor = imagecolorallocatealpha($_img, 0, 0, 0, 127);
imagefill($_img, 0, 0, $_transColor);
imagesavealpha($_img, true);
imagepng($_img, $output_file_name);
Use imagecolortransparent($_img, $_removeColour); in the above code.
因此,请尝试在第二个图像代码中也包含imagecolortransparent代码。