午夜剧场伦理_日本一道高清_国产又黄又硬_91黄色网战_女同久久另类69精品国产_妹妹的朋友在线

您的位置:首頁技術文章
文章詳情頁

Python基于tkinter canvas實現圖片裁剪功能

瀏覽:2日期:2022-07-06 13:19:36

實現:tkinter 畫布上顯示圖片,按下鼠標左鍵并且移動,實現截圖

代碼如下

# -*- encoding=utf-8 -*-import osimport tkinter as tkfrom PIL import Imagefrom PIL import ImageTkleft_mouse_down_x = 0left_mouse_down_y = 0left_mouse_up_x = 0left_mouse_up_y = 0sole_rectangle = Nonedef left_mouse_down(event): # print(’鼠標左鍵按下’) global left_mouse_down_x, left_mouse_down_y left_mouse_down_x = event.x left_mouse_down_y = event.ydef left_mouse_up(event): # print(’鼠標左鍵釋放’) global left_mouse_up_x, left_mouse_up_y left_mouse_up_x = event.x left_mouse_up_y = event.y corp_img(img_path, ’img/one_corp.png’, left_mouse_down_x, left_mouse_down_y, left_mouse_up_x, left_mouse_up_y)def moving_mouse(event): # print(’鼠標左鍵按下并移動’) global sole_rectangle global left_mouse_down_x, left_mouse_down_y moving_mouse_x = event.x moving_mouse_y = event.y if sole_rectangle is not None: canvas.delete(sole_rectangle) # 刪除前一個矩形 sole_rectangle = canvas.create_rectangle(left_mouse_down_x, left_mouse_down_y, moving_mouse_x, moving_mouse_y, outline=’red’)def right_mouse_down(event): # print(’鼠標右鍵按下’) passdef right_mouse_up(event): # print(’鼠標右鍵釋放’) passdef corp_img(source_path, save_path, x_begin, y_begin, x_end, y_end): if x_begin < x_end: min_x = x_begin max_x = x_end else: min_x = x_end max_x = x_begin if y_begin < y_end: min_y = y_begin max_y = y_end else: min_y = y_end max_y = y_begin save_path = os.path.abspath(save_path) if os.path.isfile(source_path): corp_image = Image.open(source_path) region = corp_image.crop((min_x, min_y, max_x, max_y)) region.save(save_path) print(’裁剪完成,保存于:{}’.format(save_path)) else: print(’未找到文件:{}’.format(source_path))if __name__ == ’__main__’: pass win = tk.Tk() frame = tk.Frame() frame.pack() screenwidth = win.winfo_screenwidth() screenheight = win.winfo_screenheight() img_path = ’img/one.png’ # img_path = ’img/bg.jpg’ # img_path = ’img/test.jpg’ # img_path = ’img/pic.gif’ image = Image.open(img_path) image_x, image_y = image.size if image_x > screenwidth or image_y > screenheight: print(’The picture size is too big,max should in:{}x{}, your:{}x{}’.format(screenwidth, screenheight, image_x, image_y)) img = ImageTk.PhotoImage(image) canvas = tk.Canvas(frame, width=image_x, height=image_y, bg=’pink’) i = canvas.create_image(0, 0, anchor=’nw’, image=img) canvas.pack() canvas.bind(’<Button-1>’, left_mouse_down) # 鼠標左鍵按下 canvas.bind(’<ButtonRelease-1>’, left_mouse_up) # 鼠標左鍵釋放 canvas.bind(’<Button-3>’, right_mouse_down) # 鼠標右鍵按下 canvas.bind(’<ButtonRelease-3>’, right_mouse_up) # 鼠標右鍵釋放 canvas.bind(’<B1-Motion>’, moving_mouse) # 鼠標左鍵按下并移動 win.mainloop()

原圖one.png

Python基于tkinter canvas實現圖片裁剪功能

運行

Python基于tkinter canvas實現圖片裁剪功能

Python基于tkinter canvas實現圖片裁剪功能

one_corp.png

Python基于tkinter canvas實現圖片裁剪功能

源碼(https://github.com/rainbow-tan/rainbow/tree/master/%E8%A3%81%E5%89%AA%E5%9B%BE%E7%89%87)

以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支持好吧啦網。

標簽: Python 編程
相關文章:
主站蜘蛛池模板: 国产精品久久一区二区三区 | 天天精品综合 | 五月婷在线 | 色播五月激情 | 在线观看成年人视频 | 日韩字幕在线观看 | 日韩在线视频精品 | 四虎网站在线观看 | 国产suv精品一区二区69 | 二区三区在线观看 | 日韩欧美一本 | 成人在线免费看片 | 国产三级一区 | 国产精品久久久久久久久久久久久久久久 | 久久久久久久麻豆 | www.日韩在线 | 婷婷啪啪 | 久热在线视频 | 亚洲免费视频网 | 青草在线观看 | 99九九视频 | 视频1区 | av不卡网站| 26uuu亚洲国产精品 | 久久久国产精品一区 | 亚洲欧美另类色图 | 一区二区欧美视频 | 日本色婷婷 | 98超碰在线| 天天色视频| 国产肥老妇视频 | 青青草久久 | 一级全黄少妇性色生活片 | 天堂资源 | 一级片麻豆 | 日韩综合久久 | 黄色片在线免费观看视频 | 黄网在线看 | 成人免费毛片嘿嘿连载视频 | 一区二区三区国产视频 | 亚洲aaa级 |