圆月山庄资源网 Design By www.vgjia.com
完整项目地址下载:https://github.com/rainbow-tan/rainbow/tree/master/%E8%A3%81%E5%89%AA%E5%9B%BE%E7%89%87
实现:tkinter 画布上显示图片,按下鼠标左键并且移动,实现截图
# -*- encoding=utf-8 -*- import os import tkinter as tk from PIL import Image from PIL import ImageTk left_mouse_down_x = 0 left_mouse_down_y = 0 left_mouse_up_x = 0 left_mouse_up_y = 0 sole_rectangle = None def 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.y def 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('鼠标右键按下') pass def right_mouse_up(event): # print('鼠标右键释放') pass def 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
运行
one_corp.png
以上就是python 实现图片裁剪小工具的详细内容,更多关于python 图片裁剪的资料请关注其它相关文章!
圆月山庄资源网 Design By www.vgjia.com
广告合作:本站广告合作请联系QQ:858582 申请时备注:广告合作(否则不回)
免责声明:本站文章均来自网站采集或用户投稿,网站不提供任何软件下载或自行开发的软件! 如有用户或公司发现本站内容信息存在侵权行为,请邮件告知! 858582#qq.com
免责声明:本站文章均来自网站采集或用户投稿,网站不提供任何软件下载或自行开发的软件! 如有用户或公司发现本站内容信息存在侵权行为,请邮件告知! 858582#qq.com
圆月山庄资源网 Design By www.vgjia.com
暂无评论...
更新日志
2024年11月01日
2024年11月01日
- 群星《时光正好 电视剧影视原声带》[FLAC/分轨][234.11MB]
- 英雄联盟s14韩国队种子怎么排名 s14韩国队种子队伍排名一览
- 英雄联盟s14四强开始时间 英雄联盟s14四强赛程表一览
- 英雄联盟s14四强赛在哪举办 英雄联盟s14半决赛举办地点一览
- 《三国志8重制版》全女将一览
- 《英雄联盟》Faker第七次晋级决赛
- 《历史时代3》下载方法
- EchoVocalEnsemble-Innocence(2024)[WAV]
- BuceadorVoltio-Satelite(2024)[24-48]FLAC
- VilmPribyl-SmetanaDalibor(2024)[24Bit-WAV]
- 高通骁龙8至尊版亮相:性能领先A18 Pro达到40%,更有多项首发
- 2024骁龙峰会:自研Oryon CPU登陆手机、汽车丨骁龙8至尊版、骁龙至尊版汽车平台
- 稀有度拉满!首款小马宝莉背卡引爆网络热梗
- 群星《全糖少爷1 影视原声带》[320K/MP3][98.36MB]
- 群星《全糖少爷1 影视原声带》[FLAC/分轨][420.97MB]