Threebody1 发表于 2023-4-30 14:16:29

论如何用pygame加载fishclogo

fishc/static/image/common/logo.png
首先爬虫:
from requests import get
a=get('https://fishc.com.cn/static/image/common/logo.png').content
保存:
with open('1.png', 'wb')as f:f.write(a)
Pygame:
import pygame
pygame.init()
img=pygame.image.load('1.png')

Delete:
from os import remove
remove('1.png')
Res:
return img
All
from requests import get
a=get('https://fishc.com.cn/static/image/common/logo.png').content
with open('1.png', 'wb')as f:f.write(a)
import pygame
pygame.init()
img=pygame.image.load('1.png')
from os import remove
remove('1.png')
return img

yinda_peng 发表于 2023-4-30 19:31:43

这是小号?

Threebody1 发表于 2023-5-1 06:59:27

yinda_peng 发表于 2023-4-30 19:31
这是小号?

歌者的小号
页: [1]
查看完整版本: 论如何用pygame加载fishclogo