📌  相关文章
📜  如何获取 PyGame 窗口的大小?

📅  最后修改于: 2022-05-13 01:55:12.111000             🧑  作者: Mango

如何获取 PyGame 窗口的大小?

在本文中,我们将学习如何获取 PyGame 窗口的大小。

游戏编程现在非常有益,它也可以用于广告和教学工具。游戏开发包括数学、逻辑、物理、AI 等等,而且非常有趣。在Python中,游戏编程是在pygame中完成的,它是这样做的最佳模块之一。

安装:

可以使用以下命令安装此库:

pip install pygame 

循序渐进的方法:

  1. 导入pygame。
  2. 初始化pygame。
  3. 使用pygame.display.set_mode()方法形成一个屏幕。
  4. 使用screen.get_size()方法获取成形屏幕的大小。
  5. 退出pygame。

以下是基于上述方法的一些示例:

示例 1:

Python3
# import package pygame
import pygame
 
# initialize pygame
pygame.init()
 
# Form screen
screen = pygame.display.set_mode()
 
# get the default size
x, y = screen.get_size()
 
# quit pygame
pygame.display.quit()
 
# view size (width x height)
print(x, y)


Python3
# import package pygame
import pygame
 
# initialize pygame
pygame.init()
 
# Form screen
screen = pygame.display.set_mode((500, 500))
 
# get the size
x, y = screen.get_size()
 
# quit pygame
pygame.display.quit()
 
# view size (width x height)
print(x, y)


输出 :

1536 864

示例 2:

蟒蛇3

# import package pygame
import pygame
 
# initialize pygame
pygame.init()
 
# Form screen
screen = pygame.display.set_mode((500, 500))
 
# get the size
x, y = screen.get_size()
 
# quit pygame
pygame.display.quit()
 
# view size (width x height)
print(x, y)

输出 :

500 500