在 Firefox 上将图像转换为 Base64 javascript

发布于 2024-12-01 17:31:52 字数 121 浏览 0 评论 0原文

我需要通过greasemonkey 或firefox .xpi 扩展名将网页中的图像转换为base64。 我该怎么做? 我知道我有 btoa() 函数,但我只能将它与字符串一起使用,而不能与图像一起使用。 这里帮助不大。 谢谢。

I need to convert image that are in a webpage to base64 over greasemonkey or firefox .xpi extension.
How can i do it?
I know that i have btoa() function, but i only can use it with strings, not with images.
Little help here.
Thanks.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

手长情犹 2024-12-08 17:31:52

您可以使用 canvas 元素并使用 drawImage() 在其上绘制图像,然后使用 toDataURL() 获取 Base64 编码图像。

请参阅:https://developer.mozilla.org/en/html/canvas

You could use the canvas element and draw the image using drawImage() onto it, then use toDataURL() to get the base64 encoded image.

see: https://developer.mozilla.org/en/html/canvas

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文