Python Pygame 无法正确显示图像

Posted

技术标签:

【中文标题】Python Pygame 无法正确显示图像【英文标题】:Python Pygame doesn't display images correctly 【发布时间】:2016-03-21 17:45:49 【问题描述】:

我是 Python 新手,我开始学习 Eric Matthes 的“Python 速成课程”。我在 Pygame 章节的开头,我按照代码进行操作,但我加载的图像看起来总是损坏,我不知道为什么。代码来自书中。第一个文件:

    import pygame
    class Ship():
        def __init__(self, screen):
            """Initialize the ship and set its starting position."""

    # Load the ship image and get its rect.
            self.image = pygame.image.load('ship.bmp')
            self.screen = screen
            self.rect = self.image.get_rect()
            self.screen_rect = screen.get_rect()
    # Start each new ship at the bottom center of the screen.
            self.rect.centerx = self.screen_rect.centerx
            self.rect.bottom = self.screen_rect.bottom
        def blitme(self):
            self.screen.blit(self.image, self.rect)

第二个文件:

    import sys
    import pygame
    from settings import Settings
    from ship import Ship
    def run_game():
        # Initialize game and create a screen object.
        pygame.init()
        ai_settings = Settings()
        screen = pygame.display.set_mode((ai_settings.screen_width, ai_settings.screen_height))
        pygame.display.set_caption("Alien Invasion")
        ship = Ship(screen)
        bg_color = (230, 230, 230)

        # Start the main loop for the game.
        while True:
            # Watch for keyboard and mouse events.
            for event in pygame.event.get():
                if event.type == pygame.QUIT:
                    sys.exit()      
            # Make the most recently drawn screen visible.

            screen.fill(ai_settings.bg_color)
            ship.blitme()


            pygame.display.flip()


    run_game()

设置文件:

class Settings():
       """A class to store all settings for Alien Invasion."""
       def __init__(self):
           """Initialize the game's settings."""
           # Screen settings
           self.screen_width = 800
           self.screen_height = 600
           self.bg_color = (230, 230, 230)

我的 bmp 是这样的:

我尝试添加不同的图像,但没有成功:

我该如何解决?

【问题讨论】:

你不需要在你的图片上应用convert()吗? 不知道,书码里没有这个。我该如何修改我的代码? self.image = pygame.image.load('ship.bmp').convert() - 最后加上convert() 试试 没有任何变化,仍然是相同的变形图像。 【参考方案1】:

我假设您使用的是 Mac,使用的是相对较新版本的 SDL。问题不在于您的代码,而在于较新版本的 SDL 在 Mac OS 中存在错误。

要解决此问题,您要么需要将 SDL 降级到 1.2 左右之前的版本(它就在那里,忘记了确切的版本),要么在不同的操作系统上工作。

这很烦人。我最终在我的 Mac 上安装了 virtualbox 并运行 Linux,只是为了能够编写 pygame!

【讨论】:

谢谢你,我想就是这样,我可能会在试图修复该代码时摸不着头脑。 Mac 和 El Captain 在这里。 还有El Capitain!让我知道切换到其他东西是否适合您。这是我的来源顺便说一句。不幸的是,我无法降级 SDL,所以我不能 100% 说这是问题所在,尽管很有可能。 ***.com/questions/33582204/…

以上是关于Python Pygame 无法正确显示图像的主要内容,如果未能解决你的问题,请参考以下文章

使用 PyGame 显示图像的四种方案

使用 PyGame 显示图像的四种方案

解决Linux无法安装pygame问题

pygame图像未显示

如何在pygame中显示图像?

Python之Game笔记(3):pygame简单动画的实现