代码:
from PIL import Image, ImageDraw
# 打开图像
image_path = 'path_to_your_image.jpg'
image = Image.open(image_path)
# 创建一个可以在上面绘图的对象
draw = ImageDraw.Draw(image)
# 设置圆点的坐标和颜色
x = 100 # 圆点的x坐标
y = 100 # 圆点的y坐标
color = (255, 0, 0) # 红色,RGB
# 画实心圆点
# 圆的半径为1,因此它看起来像一个点
draw.ellipse((x-1, y-1, x+1, y+1), fill=color)
# 保存修改后的图像
image.save('path_to_save_your_image_with_dot.jpg')
# 显示图像
image.show()
结果:
原图如下: