使用 Python 的 tkinter 的 Canvas 绘图时,如何使绘制的图形抗锯齿?
收起
加上这个参数 "smooth=True"
canvas.create_line(x1, y1, x2, y2, smooth=True)
报告相同问题?