如何截取网页部分的屏幕截图或图像
我正在开发 Facebook 应用程序。 现在我想添加一个功能,用户可以发布应用程序的图像。
我之前已经完成了所有操作,这意味着我有用于发布和应用的代码。
但我无法拍摄该应用程序的图像。 应用程序正在 facebook 的 IFame 内运行。
因此,可能主要关注的是获取 Iframe 中显示的 html 页面的 Image。
我已经尝试了很多代码片段,但没有任何效果对我有用。 请建议我如何拍摄网页任何特定部分的图像。
谢谢
I Am working on facebook application.
Now I want to add a feature That user can post Image of application.
I have done everything earlier means i have code for posting and for application.
But I am not able to take image of that application.
Application is working on within the IFame in facebook.
So may main concern to get Image that html page that is showing in Iframe.
I have tried out lot of code snippet Nothing is working for me.
Please suggest me that how can i take image of any specific part of web page.
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以尝试 wkhtmltoimage,它看起来有一些 Windows 支持。安装后,您只需运行
wkhtmltoimage http://www.site.com site.screenshot.png
。You could try wkhtmltoimage, which looks like it has some Windows support. Once its installed, you just run
wkhtmltoimage http://www.site.com site.screenshot.png
.