Linux脚本将网页从浏览器转储到图像文件
您知道有什么脚本可以将渲染的网络浏览器内容的屏幕截图保存到图像文件中吗?
现在我已经尝试过:
wkhtmltoimage - 不转储 flash
cutycapt - 在我的主机上编译的问题
khtml2png - 编译问题
在家里我使用 Ubuntu,托管在 Debian 上
Fo you know any script to make a screenshot of rendered web browser contents to an image file?
For now I've tried:
wkhtmltoimage - doesnt dump flash
cutycapt - problems to compile on my hosting
khtml2png - problems with compilation
At home I'm using Ubuntu, hosting is on Debian
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
从来没有抽出时间尝试自己,但请查看 http://en.wikipedia.org/wiki/Xvfb。您应该能够在 xvfb 中运行 Firefox 并且只保存整个虚拟窗口的图像。
Never got around to trying myself, but check out http://en.wikipedia.org/wiki/Xvfb. You should be able to run Firefox in xvfb and just save an image of the whole virtual window.
xwd(1)
程序可以捕获正在运行的浏览器窗口的内容并将其保存到文件或标准输出中:您可以使用
xwud(1)
再次查看它。ImageMagick
import(1)
命令还可以捕获 X11 窗口或屏幕的任何矩形部分。它还支持许多输出文件格式,这可能比标准 xwd 格式更好。The
xwd(1)
program can capture a running browser window's contents and save it to a file or stdout:You can view it again with
xwud(1)
.The ImageMagick
import(1)
command can also capture X11 windows or any rectangular portion of the screen. It also supports many output file formats, which might be nicer than the standardxwd
format.简单的“API”。除非你需要简单地从 WebKit 抓取屏幕,否则
恕我直言,
UPD:我刚刚看到了这个是死尸柱Z)
simple "API". Unless you need simple grab the screen from WebKit, it
is best solution IMHO
UPD: I have just seen this is necropost Z)