我尝试使用PHP与GD一起创建圆形版本的经典照片(正方形),在PNG中具有透明背景......我已经成功通过以下方式实现了互联网上的教程(例如http://thedebuggers.com/transparent-circular-crop-using-php-gd/),但圆圈不平滑,因此质量不适合我使用...
我尝试了以下方式,但我遇到了一个问题:只有左上角是透明的(在PI / 2期间圆圈是完全完美的),但是黑色背景的3/4用GD构建的仍然在这里(底角和右上角)。
你能帮我解决这个问题吗?
提前致谢,
//$image_s is a resource (photo loaded to be processed)
$width = imagesx($image_s);
$height = imagesy($image_s);
$newwidth = 500;
$newheight = 500;
$image = imagecreatetruecolor($newwidth, $newheight);
imagealphablending($image, true);
imagecopyresampled($image, $image_s, 0, 0, 0, 0, $newwidth, $newheight, $width, $height);
//create masking
$mask = imagecreatetruecolor($newwidth, $newheight);
$transparent = imagecolorallocate($mask, 255, 0, 0);
imagecolortransparent($mask,$transparent);
imagefilledellipse($mask, $newwidth/2, $newheight/2, $newwidth, $newheight, $transparent);
$red = imagecolorallocate($mask, 0, 0, 0);
imagecopymerge($image, $mask, 0, 0, 0, 0, $newwidth, $newheight, 100);
imagecolortransparent($image,$red);
imagefill($image, 0, 0, $red);
$finalImage = imagecreatetruecolor(100, 100);
$transparentColor = imagecolorallocatealpha($image, 0, 0, 0, 127);
imagefill($image, 0, 0, $transparentColor);
imagealphablending($finalImage, false);
imagesavealpha( $finalImage, true );
imagecopyresampled($finalImage, $image, 0, 0, 0, 0, 100, 100, $newwidth, $newheight);
imagepng($finalImage, $markerPicturePath);
imagedestroy($image);
imagedestroy($mask);
imagedestroy($finalImage);
//$markerPicturePath is now a PNG picture with a round extracted from the photo, with a top left transparent corner and 3 other black corners...
答案 0 :(得分:0)
看起来背景需要从左上角到其他角落连续,以便在任何地方都能保持透明度,所以在构建椭圆时我添加了一些空间。
我将imagefilledellipse行编辑为
imagefilledellipse($mask, $tempWidth/2, $tempHeight/2, $tempWidth-2, $tempHeight-2, $transparent);
谢谢,