PIL:OSError:未知文件格式

2022-04-14 00:00:00 python python-imaging-library urllib

问题描述

尝试使用有关堆栈溢出的其他问题中的一段代码。遇到这段代码:

from PIL import ImageFont
from urllib.request import urlopen

truetype_url = 'https://github.com/googlefonts/roboto/blob/main/src/hinted/Roboto-Black.ttf'
font = ImageFont.truetype(urlopen(truetype_url), size=10)

我收到此错误:

OSError: unknown file format

我尝试了其他建议,如重新安装PIL,使用quests.get,我收到了相同的错误。我检查了链接,它确实会把你带到有问题的物品。还有没有其他建议我可以试试?

我的目标: 能够从链接获取字体,这样我就不必在本地计算机上执行此操作。

谢谢!


解决方案

您可以这样做:

from PIL import Image, ImageFont, ImageDraw
import requests
import io

# Load font from URI
truetype_url = 'https://github.com/googlefonts/roboto/blob/main/src/hinted/Roboto-Black.ttf?raw=true'
r = requests.get(truetype_url, allow_redirects=True)
font = ImageFont.truetype(io.BytesIO(r.content), size=24)

# Create a black canvas and get drawing context
canvas = Image.new('RGB', (300,180))
draw = ImageDraw.Draw(canvas)

# Write in our font
draw.text((10, 10), "Got that crazy font", font=font, fill=(255,255,255))
canvas.save('result.png')


正如Karl在评论中指出的,您可以像您最初打算的那样使用urllib

from urllib.request import urlopen

truetype_url = 'https://github.com/googlefonts/roboto/blob/main/src/hinted/Roboto-Black.ttf?raw=true'

font = ImageFont.truetype(urlopen(truetype_url), size=10)

相关文章