关于pygame.image.load图片加载不出来的问题
这个问题,我在网上搜查后已经尝试了各种方法:1. 添加路径(不是斜杠问题) 2.放置同一文件夹 3.名称未包含汉字 4.图片格式小于2M 5.卸载64位,安装32位 6.图片放置:错级存放 7.使用jpg/png/gif全都试过了一遍。 但仍然没有解决问题,希望神通广大的鱼油们帮忙解决下。 (*^▽^*) 什么叫加载不出来,有没有报错提示 塔利班 发表于 2019-3-21 11:28什么叫加载不出来,有没有报错提示
Couldn't open ..... 你贴个图片或者代码都行,这么凭空造车呢感觉 目测是路径问题,上代码和错误提示吧 本帖最后由 112233a 于 2019-3-21 18:38 编辑
import pygame
import sys
pygame.init()
size = width,height = 600,400
speed = [-2,1]
bg = (0,255,255)
screen = pygame.display.set_mode(size)
pygame.display.set_caption("1231231")
turtle = pygame.image.load("turtle.jpg")
position = turtle.get_rect()
while True:
for event in pygame.event.get():
if event.type == pygame.QUIT:
sys.exit()
position = position.move(speed)
if position.left<0 or position.right>width:
turtle = pygame.tranform.flip(turtle,True,False)
speed = -speed
if position.top<0 or position.bottom>height:
speed = -speed
screen.fill(bg)
screen.bilt(turtle,position)
pygame.display.flip()
pygame.time.delay(10)
代码错误提示:Traceback (most recent call last):
File "C:\Users\R&M\AppData\Local\Programs\Python\Python37-32\24.py", line 12, in <module>
turtle = pygame.image.load("turtle.jpg")
pygame.error: Couldn't open turtle.jpg 我也遇到你这样的问题,我最后用绝对路径才正常运行,但是不知道使用相对路径{:10_269:},不知道有没前辈解答下呢 我也是同样的问题,我换了绝对路径都不可以,忧伤~楼楼现在解决了吗?求解决方案~{:5_100:} Ruanc 发表于 2019-8-1 08:02
我也是同样的问题,我换了绝对路径都不可以,忧伤~楼楼现在解决了吗?求解决方案~
- -你是不是用第三方软件来写代码的?我发现用notepad++写的,然后它的默认路径 是notepad++安装目录;如果想根据你当前运行文件的目录 的相对路径 你要装个插件才行,NppExec ,然后启用里面的folllow$(current_directory) 就可以了 pygame 2.0.1 (SDL 2.0.14, Python 3.8.7)
Hello from the pygame community. https://www.pygame.org/contribute.html
Traceback (most recent call last):
File "D:\Python3.8.7\game1.py", line 16, in <module>
turtle = pygame.image.load("turtle.jpg")
FileNotFoundError: No such file or directory.
我是这样的问题,试了半天了 俺也一样Traceback (most recent call last):
File "C:\Users\HP\Desktop\pygame\碰撞.py", line 17, in <module>
turtle = pygame.images.load("background.png")
AttributeError: module 'pygame' has no attribute 'images' 小纳尔有 发表于 2021-2-18 19:06
俺也一样Traceback (most recent call last):
File "C:%users\HP\Desktop\pygame\碰撞.py", line 17, in ...
你的把
turtle = pygame.images.load("background.png")
改成
turtle = pygame.image.load("background.png")
就好了,拼写错误 827238158 发表于 2021-1-31 15:27
pygame 2.0.1 (SDL 2.0.14, Python 3.8.7)
Hello from the pygame community. https://www.pygame.org/con ...
把你的 "turtle.jpg" 也放到"D:\Python3.8.7\" 文件夹下试试 qq1151985918 发表于 2021-2-18 20:32
把你的 "turtle.jpg" 也放到"D:\Python3.8.7\" 文件夹下试试
他这个应该是当前路径和文件路径不同导致的,加个 ../应该就可以了
就挺麻烦的,得先 os.getcwd() 看看当前路径,然后相对路径导向过去
每次都塞 python 文件夹下面,到时候东西都找不到,一大堆的东西{:10_250:}
绝对路径也很坑,换一个文件夹就得更新一次路径
我一般都是绝对路径赋值给一个常量,用的时候直接加上文件名,就算是文件挪窝了,直接修改常量里面的绝对路径就够了,只需要修改一次就可以了{:10_266:} 把路径改为绝对路径 112233a 发表于 2019-3-21 18:38
代码错误提示:Traceback (most recent call last):
File "C:%users\R&M\AppData\Local\Programs\Python ...
能告诉我你的代码和照片在哪里吗?
我将图片后的.png改为了.jgp并且将图片放在文件同一目录下运行成功 Daniel_Zhang 发表于 2021-2-18 21:59
他这个应该是当前路径和文件路径不同导致的,加个 ../应该就可以了
就挺麻烦的,得先 os.getcwd() 看 ...
我也遇到了这个问题,感谢你{:5_110:}解决了
页:
[1]