gpt4 book ai didi

php - 如何使用php在img中画一个圆圈?

转载 作者:可可西里 更新时间:2023-11-01 13:03:52 25 4
gpt4 key购买 nike

如何使用 php 在 img 中(顶部 100px,左侧 100px)画一个圆圈?

图片网址:image.jpg

我想加载img然后在它的原始内容上画一个圆圈

之前:

alt text

之后:

alt text

最佳答案

看看imagefilledellipse

// Create a image from file.
$image = imagecreatefromjpeg('imgname.jpg');

// choose a color for the ellipse
$ellipseColor = imagecolorallocate($image, 0, 0, 255);

// draw the blue ellipse
imagefilledellipse($image, 100, 100, 10, 10, $ellipseColor);

// Output the image.
header("Content-type: image/jpeg");
imagejpeg($image);

关于php - 如何使用php在img中画一个圆圈?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4572431/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com