如何将图像存储在 JavaScript 变量中并将其渲染到网页?
我正在尝试将一个小 .jpg
文件放入 JavaScript 变量中,以便可以将其呈现到网页上。我不想想要存储图像的路径,而是存储实际图像本身。
尽管我认为这应该是可能的,但我不知道如何去做。我希望所有处理都在客户端进行。
I am trying to put a small .jpg
file inside a JavaScript variable so that it can be rendered to the web page. I do not want to store the path to the image, but the actual image itself.
Even though I think this should be possible, I don't exactly know how to go about this. I would like all processing to be client-side.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
这可能会有所帮助,数据 URI 方案。
This might help, Data URI scheme.
Base-64 编码图像< /a>
Base-64 encoded images
永远是逆向思维:
Always the contrarian: