gpt4 book ai didi

javascript - 如何仅使用 JavaScript 将 Base64 图像更改为常规图像?

转载 作者:行者123 更新时间:2023-11-28 12:41:19 24 4
gpt4 key购买 nike

假设我有动态生成的图像的整个 Base64 字符串。我怎样才能转换这样的东西:

<img src="data:image/jpeg;base64,/9j/blah blah blah........." />

<img src="mypic.jpg" />

是否可以在客户端执行而不将图像下载到服务器?有没有办法将 Base64 图像临时缓存到内存中并接收实际的图像文件?

最佳答案

Is it even possible to do on the client side without downloading the image to the server?

没有。

假设页面是从服务器加载的,然后更改 src 属性,就像这样将其指向该服务器上的 URI。浏览器会尝试从那里加载图像,因此它必须返回图像而不是 404。

网站无法将任意 URI 的内容注入(inject)浏览器缓存。

关于javascript - 如何仅使用 JavaScript 将 Base64 图像更改为常规图像?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12025125/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com