通过 PHP 和 GD 具有透明背景的平滑圆形 PNG

Smooth round PNG with transparent background via PHP and GD

我正在尝试将 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...

看来背景需要从左上角到其他角是连续的,才能让透明无处不在,所以我在做椭圆的时候加了一些space。

我将 imagefilledellipse 线编辑为 imagefilledellipse($mask, $tempWidth/2, $tempHeight/2, $tempWidth-2, $tempHeight-2, $transparent);

谢谢,