可能重複:
Remove white background from an image and make it transparent如何用PHP反鋸齒圖像?
我現在有一個代碼,從圖像中刪除白色背景,它看起來像這樣:
function transparent_background($filename, $color)
{
$img = imagecreatefrompng($_SERVER['DOCUMENT_ROOT'].'/'.$filename);
$colors = explode(',', $color);
$remove = imagecolorallocate($img, $colors[0], $colors[1], $colors[2]);
imagecolortransparent($img, $remove);
imagepng($img, $_SERVER['DOCUMENT_ROOT'].'/'.$filename);
}
transparent_background('test.png', '255,255,255');
然而,一旦出口,邊緣很粗糙。這是什麼樣子(注意,這只是我的形象的一部分):
http://img211.imageshack.us/img211/97/2125c773e32c432b91e1127.png
我添加了一個黑色的背景圖片的背後,顯示一籌。那麼有沒有一種方法可以在函數中添加一行或編輯函數,以便邊緣更平滑/消除鋸齒?謝謝!
你的代碼中沒有任何東西可以繪製,難道粗糙的邊緣在原始圖片中,只是因爲沒有黑色背景而不可見? – AndreKR
@AndreKR我的代碼從我的服務器上的特定PNG圖像中刪除白色背景,並使白色背景透明。然而,輸出邊緣非常粗糙,我想知道是否有辦法讓它更平滑。 – user1930449
您可能會從我的答案中得到一兩個提示,或者從其他答案中得到相同的問題:http://stackoverflow.com/a/8042272/5987 –