开发者

基于Python利用Pygame实现翻转图像

开发者 https://www.devze.com 2022-12-11 10:19 出处:网络 作者: 聆听世界的鱼
目录前言:1、垂直翻转图像2、水平方向翻转图像前言: 要翻转图像,我们需要使用pygame.transform.flip(Surface, xbool, ybool) 方法,该方法被调用来根据我们的需要在垂直方向或水平方向翻转图像。
目录
  • 前言:
  • 1、垂直翻转图像
  • 2、水平方向翻转图像

前言:

要翻转图像,我们需要使用pygame.transform.flip(Surface, xbool, ybool) 方法,该方法被调用来根据我们的需要在垂直方向或水平方向翻转图像。

语法:

pygame.transform.flip(Surface, xbool, ybool)

原始图像如下:

基于Python利用Pygame实现翻转图像

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()

效果图如下:

基于Python利用Pygame实现翻转图像

2、水平方向翻转图像

我们在水平yjsYzH方向翻转图像。对于这个 xbool 作为 False 和 ybool 作为 True 传递,水平翻转它。

编程客栈

代码如下:

# 导入 pygame 和 sys
import pygame
import sys

编程客栈
from pygame.locals import *


# 初始化pygame
# 导入模块
pygame.init()
pygame.display.set_caption('www.linuxmi.com')


# 图像大小将显示在屏幕上
scrhttp://www.cppcns.comeen = 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:
     yJsYzH pygame.quit()
      sys.exit()


  # 每秒更新帧数
  pygame.display.update()

显示如下:

基于Python利用Pygame实现翻转图像

到此这篇关于 基于python利用Pygame实现翻转图像的文章就介绍到这了,更多相关Pygame实现翻转图像内容请搜索我们以前的文章或继续浏览下面的相关文章希望大家以后多多支持我们!

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号