基于Python利用Pygame实现翻转图像
作者:聆听世界的鱼 时间:2021-05-20 00:05:08
前言:
要翻转图像,我们需要使用pygame.transform.flip(Surface, xbool, ybool)
方法,该方法被调用来根据我们的需要在垂直方向或水平方向翻转图像。
语法:
pygame.transform.flip(Surface, xbool, ybool)
原始图像如下:
1、垂直翻转图像
我们在垂直方向上翻转图像。我们将使用 pygame.transform.flip()
来垂直显示图像。将 xbool 作为 True 和 ybool 作为 False 传递,这样图像就会垂直翻转。
代码如下:
# 导入 pygame 和 sys
import pygame
import sys
from pygame.locals import *
# 初始化pygame
# 导入模块
pygame.init()
pygame.display.set_caption('www.linuxmi.com')
# 图像大小将显示在屏幕上
screen = pygame.display.set_mode((1300, 600), 0, 32)
# pygame.image.load() 将返回
# 有图像的对象
img = pygame.image.load('linuxmi.com.png')
while True:
? ? # 背景颜色
? ? screen.fill((255, 255, 255))
? ? # 复制图像
? ? img_copy = img.copy()
? ? # pygame.transform.flip() 将翻转图像
? ? img_with_flip = pygnsformame.tra.flip(img_copy, False, True)
? ? # surface.blit() 函数绘制一个源
? ? # 在这个表面上
? ? screen.blit(img_with_flip, (50 + 1 * 120, 100))
? ? # 退出屏幕的事件 *
? ? for event in pygame.event.get():
? ? ? ? if event.type == QUIT:
? ? ? ? ? ? pygame.quit()
? ? ? ? ? ? sys.exit()
? ? # 每秒更新帧数
? ? pygame.display.update()
效果图如下:
2、水平方向翻转图像
我们在水平方向翻转图像。对于这个 xbool 作为 False 和 ybool 作为 True 传递,水平翻转它。
代码如下:
# 导入 pygame 和 sys
import pygame
import sys
from pygame.locals import *
# 初始化pygame
# 导入模块
pygame.init()
pygame.display.set_caption('www.linuxmi.com')
# 图像大小将显示在屏幕上
screen = pygame.display.set_mode((1300, 600), 0, 32)
# pygame.image.load() 将返回
# 有图像的对象
img = pygame.image.load('linuxmi.com.png')
while True:
? ? # 背景颜色
? ? screen.fill((255, 255, 255))
? ? # 复制图像
? ? img_copy = img.copy()
? ? # pygame.transform.flip() 将翻转图像
? ? img_with_flip = pygame.transform.flip(img_copy, False, True)
? ? # surface.blit() 函数绘制一个源
? ? # 在这个表面上
? ? screen.blit(img_with_flip, (50 + 1 * 120, 100))
? ? # 退出屏幕的事件 *
? ? for event in pygame.event.get():
? ? ? ? if event.type == QUIT:
? ? ? ? ? ? pygame.quit()
? ? ? ? ? ? sys.exit()
? ? # 每秒更新帧数
? ? pygame.display.update()
显示如下:
来源:https://developer.51cto.com/article/699971.html
标签:Python,Pygame,翻转图像
0
投稿
猜你喜欢
Python入门学习之字符串与比较运算符
2023-10-14 22:09:40
go实现脚本解释器gscript
2023-10-12 00:49:39
Django项目使用CircleCI的方法示例
2022-10-17 11:43:24
ASP分页和日期格式化为RFC822格式的办法
2008-11-21 15:46:00
JS逆序遍历实现代码
2023-10-11 07:31:49
Python实现对adb命令封装
2022-07-07 23:41:13
python批量替换多文件字符串问题详解
2023-05-08 23:48:06
Python使用jupyter notebook查看ipynb文件过程解析
2021-07-25 20:26:30
Python实现简易信息分类存储软件
2023-08-09 20:45:08
Python编程argparse入门浅析
2023-11-05 09:53:01
Alexa排名数据xml接口及其参数说明
2008-11-07 13:03:00
使用SqlBulkCopy时应注意Sqlserver表中使用缺省值的列
2012-07-11 15:34:35
Python lambda表达式用法实例分析
2022-06-05 12:32:34
在SQL SERVER中导致索引查找变成索引扫描的问题分析
2024-01-20 09:19:35
配置node服务器并且链接微信公众号接口配置步骤详解
2024-05-03 15:54:12
mysql实现从导出数据的sql文件中只导入指定的一个表
2024-01-13 11:43:54
你的网站使用了微格式了么
2009-05-21 12:10:00
用vue的双向绑定简单实现一个todo-list的示例代码
2024-05-09 09:30:28
Pycharm更换python解释器的方法
2023-03-23 10:02:58
使用Python和Prometheus跟踪天气的使用方法
2021-05-15 14:31:05