I was looking at the following python library: Link here
I don't think it has the capability of saving the output as .png or .jpeg.
I surfed on google a lot, Could someone Please give me some pointers on how to do it?
Thanks
Joe
I was looking at the following python library: Link here
I don't think it has the capability of saving the output as .png or .jpeg.
I surfed on google a lot, Could someone Please give me some pointers on how to do it?
Thanks
Joe
No, the highcharts package does not offer that functionality. You could either edit their code, or look into a package that converts html to png. For example https://github.com/AdamN/python-webkit2png
You can call this package from python
import subprocess
subprocess.call("python scripts/webkit2png -h", shell=True)