亚洲精品久久久中文字幕-亚洲精品久久片久久-亚洲精品久久青草-亚洲精品久久婷婷爱久久婷婷-亚洲精品久久午夜香蕉

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

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

瀏覽:33日期: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 編程
相關文章:
主站蜘蛛池模板: 在线观看香蕉免费啪在线观看 | 麻豆果冻国产91在线极品 | 99久热只有精品视频免费观看17 | 久草福利资源 | 狠狠综合欧美综合欧美色 | 国产一区亚洲 | 精品国产三级在线观看 | 中文字幕在线观 | 一区视频 | 久久综合色综合 | 久久国产资源 | 午夜男人女人爽爽爽视频 | 国产凹凸在线观看一区二区 | 亚洲综合图片人成综合网 | 亚洲欧洲日韩国产aa色大片 | 伦理一区二区 | 男女爱爱激情视频在线观看 | 久久久精品2018免费观看 | 国产美女视频黄a视频免费全过程 | 国产1024观看免费视频 | 国产欧美日韩精品高清二区综合区 | 久久久久在线观看 | 日韩精品一区二区三区毛片 | 日本欧美做爰全免费的视频 | 99视频在线观看视频一区 | 国产凹凸在线观看一区二区 | 欧美黑人巨大肥婆性视频 | 国产精品 色 | 在线一区免费视频播放 | 性人久久久久 | 一级毛片完整免费版 | 免费看在线偷拍视频 | 网友自拍区一区二区三区 | 免费大片在线观看www | 在线观看国产精品日本不卡网 | 成人短视频在线在线观看 | 欧美成人a级在线视频 | 日韩精品亚洲人成在线播放 | 黄色一级毛片免费看 | 成人精品国产亚洲 | www亚洲视频 |