有没有办法使用javascript读取页面中的图像

发布于 2024-12-04 05:35:27 字数 161 浏览 1 评论 0原文

我想知道有没有办法读取网页中的图像 因为我想制作一个小插件,可以将它们上传到我的服务器, 首先,我将图像设置为可拖动,然后将它们拖放到一个小“盒子”中并上传, 也许是HTML5中的File API,但不幸的是我发现它只能读取本地文件,
有人有一些想法吗?谢谢

I wonder if there's any way to read the images in the web page
cause I want to make a small plugin that can upload them to my server,
First,I set the images draggable and then I drap them to a small "box" and upload them,
Maybe the File API in HTML5,But I found it can only read local file unfortunately,
Anyone get some ideas?Thanks

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

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

发布评论

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

评论(2

狼亦尘 2024-12-11 05:35:27

如果您想处理图像(裁剪、调整大小等),则必须使用 HTML5 元素。但如果你只想有一个图像元素,你可以使用这个:

var myImg = new Image();
myImg.src = "url_to_image";

If you want to deal with images (croping, resizeing etc) you have to use HTML5 <canvas> element. But if you just want to have an image element, you can use this:

var myImg = new Image();
myImg.src = "url_to_image";
無心 2024-12-11 05:35:27

如果我理解正确的话,您想将某个页面的图像复制到您的服务器吗?您可以获取页面源代码、所有图像链接并用 javascript 显示它,但要将其上传到您的服务器,您必须使用一种服务器端语言,例如 PHP。

If I understand you correctly, you want to copy images from some page to your server? You can get page source, all images links and display it in javascript, but to upload it to your server you have to use one of server side languages like e.g. PHP.

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