PhantomJS - 捕获HTMLImageElement,HTMLCanvasElement或ImageData的屏幕

时间:2014-06-17 13:38:32

标签: javascript phantomjs

PhantomJS是否可以捕获一个网页屏幕而不保存它到文件系统?

我需要这个,因为我想用页面截图进行一些后处理(配色方案检测)。

使用JS。(https://github.com/leeoniya/RgbQuant.js)进行颜色检测,可以处理HTMLImageElementHTMLCanvasElementImageDataCanvasRenderingContext2D

以下是PhantomJS API,但render方法仅支持文件路径:http://phantomjs.org/screen-capture.html

1 个答案:

答案 0 :(得分:1)

感谢Artjom B.在评论中提供的解决方案。它工作正常。 首先,我创建了该页面的屏幕截图,并将其保存到文件夹screenshots,其中html file 包含此屏幕截图

page.open(url, function (status) {
    // Make screenshot and save it to './screenshots'
    var rel_path = 'screenshots/' + btoa(url) + '_' + (new Date().getTime());

    // Image path
    var img_path = rel_path + '.png';

    // HTML page path
    var html_path = rel_path + '.html';

    // Make screenshot
    page.render(img_path);

    // Create webpage with the image, but take the absolute path.
    fs.write(html_path, '<html><body><img id="image" src="' + 'file:///' + fs.absolute(img_path) + '"/></body></html>', 'w');
});

之后我用幻像再次打开创建的文件。通过id = image加载图像并执行我的RGB量化。

p.open('file:///' + html_path, function start(status) {
    console.log('[RGB-QUANTIFICATION]: ' + self.url);

    // Inject image quantification library
    p.injectJs('ext/rgbquant.js');

    // Generate color palette
    var colors = p.evaluate(function () {
        var rgb_quant_settings = {colors: 5, method: 2, initColors: 4096, minHueCols: 0};
        var rgb_quant = new RgbQuant(rgb_quant_settings);
        rgb_quant.sample(document.getElementById('image'));
        return rgb_quant.palette(true);
    });

    ...

});