保存从 Firefox 扩展加载的图片
在我的 Firefox 扩展中,我想保存一张已加载并显示在浏览器选项卡中的图片。我只找到了使用传递图片 url 的二进制输入流直接从服务器下载文件或图片的方法。但这不是我想要在这里做的。
那么,如何将firefox已经加载的图片保存到本地文件呢?
From within my firefox extension I want to save a picture which is already loaded and shown in a browser tab. I only found ways to download a file or picture directly from the server with a binary input stream passing the url of the picture. But this is not what I want to do here.
So, how can I save a picture which is already loaded by firefox to a local file?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以在附加组件中创建一个文件,并将二进制图像数据转换为 Base64,并将编码数据转储到该文件中。
You can create a file in your add-on and convert binary image data into base64 and dump that encoded data into that file.