因此,我有一个简短的python脚本,该脚本接受表示图像的base64字符串,然后打开该图像的预览。
这里是我的脚本:
#!/usr/local/bin/python3
from PIL import Image
import sys
import base64
IMAGE_NAME = "temp.png"
def do_some_stuff(args):
if len(args) != 2:
return
with open(IMAGE_NAME, "wb") as image_file:
image_file.write(base64.decodebytes(args[1].encode('ascii')))
image = Image.open(IMAGE_NAME)
image.show()
if __name__ == '__main__':
do_some_stuff(sys.argv)
看起来似乎还可以,除了有时间显示我因这个错误而受到欢迎的图像时
FSPathMakeRef(/Applications/Preview.app) failed with error -43.
有人知道为什么会发生此错误或如何解决该错误吗?
答案 0 :(得分:0)