python移动图形编程_Python tkinter实现的图片移动碰撞动画效果【附源码下载】

本文实例讲述了Python tkinter实现的图片移动碰撞动画效果。分享给大家供大家参考,具体如下:

先来看看运行效果:

201814150409748.gif?20180415426

具体代码如下:

#!/usr/bin/python

# -*- coding: utf-8 -*-

import time

try:

from tkinter import *

except ImportError: #Python 2.x

PythonVersion = 2

from Tkinter import *

from tkFont import Font

from ttk import *

from tkMessageBox import *

import tkFileDialog

else: #Python 3.x

PythonVersion = 3

from tkinter.font import Font

from tkinter.ttk import *

from tkinter.messagebox import *

# 配置

# 要打开的图像

image1 = "open.gif"

# 初始坐标

x0 = 50.0

y0 = 50.0

# 列表将包含所有的x和y坐标.到目前为止,他们只包含初始坐标

x = [x0]

y = [y0]

# 每次移动的速度或距离

vx = 1.0# x 速度

vy = 0.5# y 速度

# 边界,这里要考虑到图片的大小,要预留一半的长和宽

x_min = 46.0

y_min = 46.0

x_max = 754.0

y_max = 554.0

# 图片间隔时间,要动画效果,此处设为每秒40帧

sleep_time = 0.025

# 运行步数

range_min = 1

range_max = 2000

# 创建500次的x和y坐标

for t in range(range_min, range_max):

# 新坐标等于旧坐标加每次移动的距离

new_x = x[t - 1] + vx

new_y = y[t - 1] + vy

# 如果已经越过边界,反转方向

if new_x >= x_max or new_x <= x_min:

vx = vx * -1.0

if new_y >= y_max or new_y <= y_min:

vy = vy * -1.0

# 添加新的值到列表

x.append(new_x)

y.append(new_y)

# 开始使用tk绘图

root = Tk()

root.title("我们 tkinter动画测试") #在这里修改窗口的标题

canvas = Canvas(width=800, height=600, bg='white')

canvas.pack()

photo1 = PhotoImage(file=image1)

width1 = photo1.width()

height1 = photo1.height()

image_x = (width1) / 2.0

image_y = (height1) / 2.0

# 每次的移动

for t in range(range_min, range_max):

canvas.create_image(x[t], y[t], image=photo1, tag="pic")

canvas.update()

# 暂停0.05妙,然后删除图像

time.sleep(sleep_time)

canvas.delete("pic")

root.mainloop()

附:完整实例代码点击此处本站下载。

注:tkinter只能识别gif格式图片,将jpg或png格式图片后缀名简单改成gif是不能识别的!

更多关于Python相关内容感兴趣的读者可查看本站专题:《Python数据结构与算法教程》、《Python函数使用技巧总结》、《Python字符串操作技巧汇总》、《Python入门与进阶经典教程》及《Python文件与目录操作技巧汇总》

希望本文所述对大家Python程序设计有所帮助。

本文标题: Python tkinter实现的图片移动碰撞动画效果【附源码下载】

本文地址: http://www.cppcns.com/jiaoben/python/216666.html

  • 1
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值