打印原型输出(以编程方式)

发布于 2024-09-27 04:39:54 字数 283 浏览 2 评论 0原文

我正在考虑切换到 protovis 进行可视化。然而,有一点让我持怀疑态度 - 由于 protovis 在浏览器中将其输出创建为 div,我想知道是否有任何至少半自动的方法可以让我一次创建一堆图像,而无需打开每个图像并按“打印” “手动。

所以问题是:

  • 你认为我可以使用像 V8 这样的无浏览器 JS 引擎来执行代码并打印结果吗?
  • 我可以在浏览器中自动打开和打印吗?
  • 还有另一种方法可以从 protovis 获取自动图像吗?

谢谢, 尼古拉斯

I'm pondering switching to protovis for visualizations. One thing that keeps me skeptical however - since protovis creates its output as a div in a browser, I wonder if there is any at least semi-automatic way for me to create a bunch of images at once without opening each one and pressing "print" manually.

So the question would be:

  • do you think I can use a browserless JS engine like V8 to execute the code and print the result?
  • can I automate opening and printing within a browser?
  • is there another way to get automated images from protovis?

Thanks,
Nicolas

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

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

发布评论

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

评论(2

楠木可依 2024-10-04 04:39:54

请查看有关此主题的此 Google 网上论坛帖子

Have a look at this Google Groups thread about this very topic.

初心 2024-10-04 04:39:54

查看 http://www.phantomjs.org/

它是一个无头浏览器。

它完全可以做你想做的事:
http://code.google.com/p/phantomjs/wiki/QuickStart#渲染

rasterize.js:

if (phantom.state.length === 0) {
    if (phantom.args.length !== 2) {
        console.log('Usage: rasterize.js URL filename');
        phantom.exit();
    } else {
        var address = phantom.args[0];
        phantom.state = 'rasterize';
        phantom.viewportSize = { width: 600, height: 600 };
        phantom.open(address);
    }
} else {
    var output = phantom.args[1];
    phantom.sleep(200);
    phantom.render(output);
    phantom.exit();
}

生成著名老虎渲染的示例(来自 SVG):

phantomjs rasterize.js http://ariya.github.com/svg/tiger.svg tiger.png 

Check out http://www.phantomjs.org/

It is a headless browser.

It can do exactly what you want :
http://code.google.com/p/phantomjs/wiki/QuickStart#Rendering

rasterize.js:

if (phantom.state.length === 0) {
    if (phantom.args.length !== 2) {
        console.log('Usage: rasterize.js URL filename');
        phantom.exit();
    } else {
        var address = phantom.args[0];
        phantom.state = 'rasterize';
        phantom.viewportSize = { width: 600, height: 600 };
        phantom.open(address);
    }
} else {
    var output = phantom.args[1];
    phantom.sleep(200);
    phantom.render(output);
    phantom.exit();
}

An example to produce the rendering of the famous Tiger (from SVG):

phantomjs rasterize.js http://ariya.github.com/svg/tiger.svg tiger.png 

enter image description here

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