python tkiner实现 一个小小的图片翻页功能的示例代码


Posted in Python onJune 24, 2020

具体代码如下所示:

import tkinter as tk
import tkinter.messagebox
import copy
import os,sys
def get_picture(dirs):
'''获得所有图片'''
  picture_list = []
  for dir,dir_abs,files in os.walk(dirs):
    for file in files:
      if file.endswith('.gif'):
        picture_list.append(os.path.join(dir,file))
  return picture_list
class Window:
  button_list = []
  object_list = []
  pictures = get_picture(picture_path)
  file = pictures[0]
  is_show = True
  index = 0
  image_file = ''
  def __init__(self):
    '''创建窗口和frame'''
    self.window = tk.Tk()
    self.window.title('my window')
    self.window.geometry('600x600')
    self.frame = tk.Frame(self.window)
    self.frame.pack()
    self.frame_l = tk.Frame(self.frame)
    self.frame_r = tk.Frame(self.frame)
    self.frame_l.pack(side='left')
    self.frame_r.pack(side='right')
    self.frame_ll = tk.Frame(self.frame_r)
    self.frame_rr = tk.Frame(self.frame_r)
    self.frame_ll.pack(side='left')
    self.frame_rr.pack(side='right')
    
  def next_picture(self):
    '''下一张图片'''
    self.index = self.pictures.index(self.file)
    self.index += 1
    if self.index < len(self.pictures):
      self.checkout_button()
      self.file = self.pictures[self.index]
      self.create_canvas(self.file)
    else:
      self.index = len(self.pictures) - 1
      tkinter.messagebox.showinfo('提示', '已近是最后一张了')

  def checkout_button(self):
    '''判断列表中是否只有button对象'''
    object_list_copy = copy.copy(self.object_list)
    for ob in self.object_list:
      if ob in self.button_list:
        pass
      else:
        b = object_list_copy.pop(self.object_list.index(ob))
        b.destroy()
    self.object_list = object_list_copy

  def pre_picture(self):
    '''上一页'''
    self.index = self.pictures.index(self.file)
    self.index -= 1
    if self.index >= 0:
      self.checkout_button()
      self.file = self.pictures[self.index]
      self.create_canvas(self.file)
    else:
      self.index = 0
      tkinter.messagebox.showinfo('提示', '已经是第一张了')

  def show_picture(self):
    '''展示图片和翻页按钮'''
    self.file = self.pictures[0]
    if self.is_show:
      self.is_show = False
      self.create_canvas(self.file)
      button1 = tk.Button(self.frame_ll, text='上一张', width=10, height=1, command=self.pre_picture)
      button1.pack()
      button2 = tk.Button(self.frame_rr, text='下一张', width=10, height=1, command=self.next_picture)
      button2.pack()
      self.button_list.append(button1)
      self.button_list.append(button2)
      self.object_list.extend(self.button_list)
    else:
      self.is_show = True
      while self.object_list:
        o = self.object_list.pop()
        o.destroy()
  def new_button(self):
    '''创建展示按钮'''
    tk.Button(self.frame_l, text='图片展示', width=10, height=1, command=self.show_picture).pack()

  def create_canvas(self,file):
    '''用画布展示图片'''
    self.image_file = tk.PhotoImage(file=file)
    canvas = tk.Canvas(self.frame_r, height=500, width=600)
    canvas.create_image(1, 1, anchor='nw', image=self.image_file)
    canvas.pack()
    self.object_list.append(canvas)

  def run(self):
    '''主程序调用'''
    self.window.mainloop()

if __name__ == '__main__':
  w = Window()
  w.new_button()
  w.run()

样式如下:有点丑,不过功能没毛病,就先这么着吧~~~

python tkiner实现 一个小小的图片翻页功能的示例代码

点击图片展示之后

python tkiner实现 一个小小的图片翻页功能的示例代码

上一页下一页可以用,再次点击图片展示

python tkiner实现 一个小小的图片翻页功能的示例代码

总结

到此这篇关于python tkiner实现 一个小小的图片翻页功能的文章就介绍到这了,更多相关python tkiner实现图片翻页内容请搜索三水点靠木以前的文章或继续浏览下面的相关文章希望大家以后多多支持三水点靠木!

Python 相关文章推荐
python实现udp数据报传输的方法
Sep 26 Python
Python+树莓派+YOLO打造一款人工智能照相机
Jan 02 Python
Python模块文件结构代码详解
Feb 03 Python
Python3使用SMTP发送带附件邮件
Jun 16 Python
对PyTorch torch.stack的实例讲解
Jul 30 Python
Python3爬虫学习入门教程
Dec 11 Python
如何通过python画loss曲线的方法
Jun 26 Python
python中bytes和str类型的区别
Oct 21 Python
DjangoWeb使用Datatable进行后端分页的实现
May 18 Python
20行Python代码实现一款永久免费PDF编辑工具的实现
Aug 27 Python
Python 使用xlwt模块将多行多列数据循环写入excel文档的操作
Nov 10 Python
python xlwt模块的使用解析
Apr 13 Python
在tensorflow实现直接读取网络的参数(weight and bias)的值
Jun 24 #Python
基于pytorch中的Sequential用法说明
Jun 24 #Python
django haystack实现全文检索的示例代码
Jun 24 #Python
Python爬虫如何应对Cloudflare邮箱加密
Jun 24 #Python
python使用自定义钉钉机器人的示例代码
Jun 24 #Python
pytorch中的weight-initilzation用法
Jun 24 #Python
pytorch查看模型weight与grad方式
Jun 24 #Python
You might like
Php部分常见问题总结
2006/10/09 PHP
我用php+mysql写的留言本
2006/10/09 PHP
PHP+MySQL 制作简单的留言本
2009/11/02 PHP
Zend Framework入门教程之Zend_View组件用法示例
2016/12/09 PHP
javascript 鼠标滚轮事件
2009/04/09 Javascript
文字不间断滚动(上下左右)实例代码
2013/04/21 Javascript
JavaScript中对循环语句的优化技巧深入探讨
2014/06/06 Javascript
在JavaScript中使用对数Math.log()方法的教程
2015/06/15 Javascript
js图片轮播效果实现代码
2020/04/18 Javascript
jQuery操作iframe中js函数的方法小结
2016/07/06 Javascript
关于微信jssdk实现多图片上传的一点心得分享
2016/12/13 Javascript
jQuery插件FusionCharts实现的Marimekko图效果示例【附demo源码】
2017/03/24 jQuery
详解node登录接口之密码错误限制次数(含代码)
2019/10/25 Javascript
vue 解决遍历对象显示的顺序不对问题
2019/11/07 Javascript
Python下载懒人图库JavaScript特效
2015/05/28 Python
使用Python编写简单的端口扫描器的实例分享
2015/12/18 Python
python3.X 抓取火车票信息【修正版】
2018/06/19 Python
Django框架使用mysql视图操作示例
2019/05/15 Python
画pytorch模型图,以及参数计算的方法
2019/08/17 Python
python3 map函数和filter函数详解
2019/08/26 Python
Python中list循环遍历删除数据的正确方法
2019/09/02 Python
关于pycharm中pip版本10.0无法使用的解决办法
2019/10/10 Python
Python Celery多队列配置代码实例
2019/11/22 Python
详解numpy.ndarray.reshape()函数的参数问题
2020/10/13 Python
Python基于爬虫实现全网搜索并下载音乐
2021/02/14 Python
浅谈利用缓存来优化HTML5 Canvas程序的性能
2015/05/12 HTML / CSS
小天鹅官方商城:LittleSwan
2017/06/16 全球购物
eBay荷兰购物网站:eBay.nl
2020/06/26 全球购物
汉语言文学毕业生自荐信范文
2014/03/24 职场文书
班长演讲稿范文
2014/04/24 职场文书
基层党组织建设整改方案
2014/09/16 职场文书
商品陈列协议书
2014/09/29 职场文书
2014年服装销售工作总结
2014/11/27 职场文书
2016年大学生社会实践心得体会
2015/10/09 职场文书
广播稿:校园广播稿范文
2019/04/17 职场文书
Mac M1安装mnmp (Mac+Nginx+MySQL+PHP) 开发环境
2021/03/29 PHP