From 5c3387a468322f022713c820c20eb5d9e0778a33 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?TOP=E7=B3=AF=E7=B1=B3?= <1130395124@qq.com> Date: Thu, 29 Jun 2023 16:19:36 +0800 Subject: [PATCH] =?UTF-8?q?=E5=A2=9E=E5=8A=A0=E5=9C=86=E8=A7=92=E5=A4=84?= =?UTF-8?q?=E7=90=86?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ImageTool.php | 59 +++++++++++++++++++++++++++++++++++++++++++++++---- main.php | 1 + 2 files changed, 56 insertions(+), 4 deletions(-) diff --git a/ImageTool.php b/ImageTool.php index 67b0dc1..873abb5 100644 --- a/ImageTool.php +++ b/ImageTool.php @@ -48,6 +48,7 @@ class ImageTool default: $resource = null; } + imagesavealpha($resource, true); return $resource; } @@ -63,9 +64,8 @@ class ImageTool { $options = array_merge([ 'position' => [0, 0], - 'pct' => 100, ], $options); - imagecopymerge( + imagecopy( $resource, $addResource, $options['position'][0], @@ -73,8 +73,7 @@ class ImageTool 0, 0, imagesx($addResource), - imagesy($addResource), - $options['pct'] + imagesy($addResource) ); return $resource; @@ -157,6 +156,58 @@ class ImageTool return $targetResource; } + /** + * 图片圆角处理 + * @param $resource + * @param int $size + */ + public static function radius(&$resource, $size = 10) + { + $w = imagesx($resource); + $h = imagesy($resource); + if (empty($size)) { + $radius = min($w, $h) / 2; + } else { + $radius = $size / 2; + } + $img = imagecreatetruecolor($w, $h); + imagesavealpha($img, true); + $bg = imagecolorallocatealpha($img, 255, 255, 255, 127); + imagefill($img, 0, 0, $bg); + $r = $radius; + for ($x = 0; $x < $w; $x++) { + for ($y = 0; $y < $h; $y++) { + $rgbColor = imagecolorat($resource, $x, $y); + if (($x >= $radius && $x <= ($w - $radius)) || ($y >= $radius && $y <= ($h - $radius))) { + imagesetpixel($img, $x, $y, $rgbColor); + } else { + $yx = $r; + $yy = $r; + if (((($x - $yx) * ($x - $yx) + ($y - $yy) * ($y - $yy)) <= ($r * $r))) { + imagesetpixel($img, $x, $y, $rgbColor); + } + $yx = $w - $r; + $yy = $r; + if (((($x - $yx) * ($x - $yx) + ($y - $yy) * ($y - $yy)) <= ($r * $r))) { + imagesetpixel($img, $x, $y, $rgbColor); + } + $yx = $r; + $yy = $h - $r; + if (((($x - $yx) * ($x - $yx) + ($y - $yy) * ($y - $yy)) <= ($r * $r))) { + imagesetpixel($img, $x, $y, $rgbColor); + } + $yx = $w - $r; + $yy = $h - $r; + if (((($x - $yx) * ($x - $yx) + ($y - $yy) * ($y - $yy)) <= ($r * $r))) { + imagesetpixel($img, $x, $y, $rgbColor); + } + } + } + } + + $resource = $img; + } + /** * 保存图片 * @param $resource diff --git a/main.php b/main.php index 4ca3451..0d2a397 100644 --- a/main.php +++ b/main.php @@ -8,6 +8,7 @@ $maskResource1 = ImageTool::createResourceFromFile('resource/mask.png'); $maskResource2 = ImageTool::createResourceFromFile('resource/mask.jpg'); $maskResource3 = ImageTool::createResourceFromFile('resource/base.jpg'); +ImageTool::radius($maskResource1, 40); // 合并图片 ImageTool::merge($baseResource, $maskResource1, [ 'position' => [100, 100],