Python FastAPI:返回的gif图像未设置动画

2024-10-01 00:26:54 发布

您现在位置:Python中文网/ 问答频道 /正文

以下是我的Python和Html代码:-

Python:

@app.get('/', status_code=200)
async def upload_file(file: UploadFile = File(...)):
     error_img = Image.open('templates/crying.gif')
     byte_io = BytesIO()
     error_img.save(byte_io, 'png')
     byte_io.seek(0)
     return StreamingResponse(byte_io, media_type='image/gif')

HTML:

<img src="" id="img-maze" alt="this is photo" style="display: none;" />

function goBuster(file) {

    fetch('/', {
        method: 'GET',
        body: data
    })
        .then(response => response.blob())
        .then(image => {
            var outside = URL.createObjectURL(image);
            var mazeimg = document.getElementById("img-maze");
            mazeimg.onload = () => {
                URL.revokeObjectURL(mazeimg.src);
            }
            mazeimg.setAttribute('src', outside);
            mazeimg.setAttribute('style', 'display:inline-block');

        })
}

图像没有动画,我检查了生成的html并发现:

<img src="blob:http://127.0.0.1:8000/ee2bda53-92ac-466f-afa5-e6e34fa3d341" id="img-maze" alt="this is  photo" style="display:inline-block">

所以img src使用blob,我想这就是gif没有动画的原因,但我不知道如何修复它

更新1

现在,我已将代码更新为:

      with open('templates/crying.gif', 'rb') as f:
        img_raw = f.read()
        byte_io = BytesIO()
        byte_io.write(img_raw)
        byte_io.seek(0)
        return StreamingResponse(byte_io, media_type='image/gif')

生成的HTML看起来相同:

<img src="blob:http://127.0.0.1:8000/c3ad0683-3971-4444-bf20-2c9cd5eedc3d" id="img-maze" alt="this is maze photo" style="display:inline-block">

但更糟糕的是,图像甚至没有出现


Tags: ioimagesrcidimgstyledisplaybyte
2条回答
error_img.save(byte_io, 'png')

您正在将此图像转换为png。PNG不支持动画。
我认为你可以使用:

@app.get('/', status_code=200)
async def upload_file(file: UploadFile = File(...)):
     with open('templates/crying.gif', 'rb') as f:
         img_raw = f.read()
     byte_io = BytesIO(img_raw)
     return StreamingResponse(byte_io, media_type='image/gif')

(代表问题作者发布解决方案,以便在答案空间中发布)

我通过以下方式解决了问题:

  1. 使用@VadSim提供的代码
  2. wb更改为rb

注意:如果运行该程序,然后将wb更改为rb,则代码会将原始gif图像破坏为0字节图像。这就是为什么它一开始不起作用

现在,我有了html格式的gif:)

相关问题 更多 >