问题 I'm attempting to write a program that places text onto an image, I'm trying to get my head round PIL and have run into the error: OSError: cannot open resource. This is my first python program so apologies if the error is obvious. from PIL import Image from PIL import ImageDraw from PIL import ImageFont im = Image.open("example.jpg") font_type = ImageFont.truetype("Arial.ttf", 18) draw = ImageDraw.Draw(im) draw.text(xy=(50, 50), text= "Text One", fill =(255,69,0), font = font_type) im.show()