hustcc / PyG2Plot

🎨 Python3 binding for `@AntV/G2Plot` Plotting Library .
MIT License
1.07k stars 116 forks source link

现在是否支持将绘制好的图保存为图片格式的呢?而非html #20

Open gittigxuy opened 3 years ago

hustcc commented 3 years ago

很好的提议,是否有能力来 pr 这个能力?

Lix1993 commented 3 years ago

或许可以直接用这个?

from snapshot_selenium import snapshot

hustcc commented 3 years ago

或许可以直接用这个?

from snapshot_selenium import snapshot

应该可以的

hustcc commented 3 years ago

@Lix1993 可以在 readme 中加一个使用的案例应该就可以了。或者 PyGPlot 导出一个截图方法出来。

Lix1993 commented 3 years ago

echarts专用的, 用下面的js截屏, 要改下


    var ele = document.querySelector('div[_echarts_instance_]');
    var mychart = echarts.getInstanceByDom(ele);
    return mychart.getDataURL({
        type: 'png',
        pixelRatio: 2,
         excludeComponents: ['toolbox']
    });
"""
testerclub commented 3 years ago

同求增加一个render_img方法,输出成图片,图片size可自定义

hustcc commented 3 years ago

有没有想来 contribute 的?如果没有的话,我五一期间试试看。

sunslj commented 2 years ago

2022了,render_img方法有实现吗