有没有办法使用javascript读取页面中的图像
我想知道有没有办法读取网页中的图像 因为我想制作一个小插件,可以将它们上传到我的服务器, 首先,我将图像设置为可拖动,然后将它们拖放到一个小“盒子”中并上传, 也许是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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果您想处理图像(裁剪、调整大小等),则必须使用 HTML5
元素。但如果你只想有一个图像元素,你可以使用这个:
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:如果我理解正确的话,您想将某个页面的图像复制到您的服务器吗?您可以获取页面源代码、所有图像链接并用 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.