粘贴链接并获取缩略图
我想向我的 PHP/mysql/jQuery 网站添加一个功能。 其功能是,如果用户将链接粘贴到输入框中, 服务器将检索所有有代表性的图片 就像脸书一样。 有没有PHP代码项目或jQuery插件满足我的需求?
I want to add a function to my PHP/mysql/jQuery website.
The function is that if user paste a link in a input box,
the server will retrieve all representative pics
just as facebook does.
Is there any PHP code project or jQuery plugin satisfying my demand?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
有很多服务。
看一下 websnaper 例如:
或只是 google it
从头开始编写自己的代码并不难。
There are lots of services.
Take a look at websnaper for example:
or just google it
It is not hard to write your own from scratch.
Facebook 使用开放图协议 - 它检索页面,然后查找描述的特殊元标记与该页面关联的图像 (
og:image
)。我想您可以编写一个基本的 HTML 解析器来执行相同的操作。
编辑:有人已经编写了 开放图解析器
Facebook uses the Open Graph Protocol - it retrieves the page and then looks for special meta tags that describe the images associated with that page (
og:image
).I guess you can write a basic HTML parser that would do the same.
EDIT: Someone has already written an Open Graph parser