python – TkInter:绘制一个像素

在TkInter中,我们可以绘制几个
shapes.但是如果我们只想绘制像素呢? 最佳答案 创建Canvas对象后,您可以绘制跨越单个像素的线条.

your_canvas_widget.create_line(x, y, x + 1, y)
点赞