您好我有以下代码
@hug.get('/getgif', output=hug.output_format.image('gif'))
def get(username: str, password: str):
dir_path = os.path.dirname(__file__)
img_path = os.path.join(dir_path, 'animation.gif')
img = Image.open(img_path)
return img
我正在使用hug,python3和PIL来创建响应。返回到我的浏览器的图像根本没有任何影响。我猜PIL只采取GIF图像的第一帧并返回。有没有其他选择将整个GIF图像流回浏览器?
答案 0 :(得分:0)
您不需要使用PIL加载gif。您只需要为函数提供正确的输出格式并返回图像的文件路径。看看这个例子:
@hug.get('/images', output=hug.output_format.file)
def get_image(name: str):
img_file = os.path.join(IMG_ROOT_DIR, name) # type: str
return img_file