I'm using below code to export high chart as image, wanted to save in a particular location? can you please help to store autmatically in custom location: ex: D:/wamp/project/images/
$('#buttonExport').click(function() {
var e = document.getElementById("ExportOption");
var ExportAs = e.options[e.selectedIndex].value;
chart.exportChart({type: 'image/jpeg', filename: 'page1'}, {subtitle: {text:''}});
});