如何使用php在img中画一个圆?
如何使用 php 在 img 中绘制一个圆圈(顶部 100 像素,左侧 100 像素)?
图像 URL : image.jpg
我想加载 img,然后在其原始内容上画一个圆圈
之前:
之后:
How to draw a circle in (100px top and 100px left) of img using php ?
Image URL : image.jpg
I want to load the img then draw a circle on the orginal content of it
Before :
After :
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
看看 imagefilledellipse
Take a look at imagefilledellipse
首先加载图像,这个函数将完全依赖于你的源图像是什么,但现在我猜它是一个jpeg:
然后简单地在图像上创建圆圈:
我不确定你想如何返回它,但要将其输出到浏览器,只需使用以下命令:
Start by loading the image, this function will be entirely dependant on what your source image is, but for now I'll guess it's a jpeg:
Then simply create the circle on the image:
I'm not sure how you want to return it, but to output it to the browser, simply use the following: