[ Python] : 그림판 프로그램
마우스로 그림을 그릴 수 있는 그림판 프로그램 from tkinter.colorchooser import * from tkinter.simpledialog import * #함수 선언 부분 def mouseClick(event) : global x1, y1, x2, y2 x1 = event.x y1 = event.y def mouseDrop(event) : global x1, y1, x2, y2, penWidth, penColor x2 = event.x y2 = event.y canvas.create_line(x1, y1, x2 ,y2, width = penWidth, fill = penColor) def getColor() : global penColor color = askcolor() penColo..
2021. 11. 10.