从剪贴板获取图像并保存图像

发布于 2024-07-24 10:30:17 字数 101 浏览 2 评论 0原文

event.clipboardData.setData('image/jpg', "mapImage");

如何使用此代码从剪贴板获取图像 以及如何发送电子邮件

event.clipboardData.setData('image/jpg', "mapImage");

How to use this code get image from clipboard
And how to send email

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

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

发布评论

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

评论(2

烟火散人牵绊 2024-07-31 10:30:17

我不太记得javascript方法,如果你使用的是javascript,但无论它是什么,获取图像很可能就像用“get”替换“set”一样简单:

var img = event.clipboardData.getData("mapImage"); 

至于发送电子邮件,我认为事情是这样的:

<button onclick="mailto:[email protected]">Send Email</button>

I can't quite remember the javascript method, if it is javascript you're using, but whatever it is, it's most likely the getting of the image is as simple as substituting 'set' with 'get':

var img = event.clipboardData.getData("mapImage"); 

As for sending an email, I think it goes something like this:

<button onclick="mailto:[email protected]">Send Email</button>
眼波传意 2024-07-31 10:30:17

尽管据我所知,在提出这个问题时这是不可能的,但我想指出今天这是可能的,至少在谷歌浏览器中是这样。 他们将其实现为在 GMail 中使用,但它可用于所有网站。

如何粘贴剪贴板中的图像功能可以在 Gmail 和 Google Chrome 12+ 中使用吗?

Despite AFAIK this wasn't possible at the time this question was asked, I want to point out this is possible today, at least in Google Chrome. They implemented it to use in GMail, but it is available for all websites.

How does the paste image from clipboard functionality work in Gmail and Google Chrome 12+?

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