2020
11-06
11-06
Python基于tkinter canvas实现图片裁剪功能
实现:tkinter画布上显示图片,按下鼠标左键并且移动,实现截图代码如下#-*-encoding=utf-8-*-importosimporttkinterastkfromPILimportImagefromPILimportImageTkleft_mouse_down_x=0left_mouse_down_y=0left_mouse_up_x=0left_mouse_up_y=0sole_rectangle=Nonedefleft_mouse_down(event):#print('鼠标左键按下')globalleft_mouse_down_x,left_mouse_down_yleft_mouse_down_x=event.xleft_m...
继续阅读 >