我正在制作一个游戏,该游戏包含位于受密码保护的.zip文件中的图像,文本和音频文件。我正在尝试使用pygame.image.load
并显示如下图像:
from zipfile import ZipFile
import pygame
import pyganim
import sys
pygame.init()
root = pygame.display.set_mode((320, 240), 0, 32)
pygame.display.set_caption('image load test')
archive = ZipFile("spam.zip", 'r')
mcimg = archive.read("a.png", pwd=b'onlyforthedev')
mc = pygame.image.load(mcimg)
anime = pyganim.PygAnimation([(mcimg, 100),
(mcimg, 100)])
anime.play()
while True:
for event in pygame.event.get():
if event.type == QUIT:
pygame.quit()
sys.exit()
windowSurface.fill((100, 50, 50))
anime.blit(root, (100, 50))
pygame.display.update()
这是我从中得到的错误:
Traceback (most recent call last):
File "C:\Users\admin\Desktop\VERY IMPORTANT FOR GAME DISTRIBUTION\few.py",
line 41, in <module>
mc = pygame.image.load(mcimg)
pygame.error: File path '�PNG
' contains null characters
答案 0 :(得分:1)
函数pygame.image.load
可以从文件源加载图像。您可以传递文件名或类似Python文件的对象。
但是,实际上,您提供了图像字节。
要解决此问题,您可以将字节包装在io.Bytes
实例中,并将其用作类似文件的对象:
import zipfile
import io
with zipfile.ZipFile("spam.zip", 'r') as archive:
mcimg = archive.read("a.png", pwd=b'onlyforthedev')
mc = pygame.image.load(io.BytesIO(mcimg))