1 line
541 B
JavaScript
1 line
541 B
JavaScript
var page = require('webpage').create();page.onInitialized = function(){page.evaluate(function(){Math.log10 = Math.log10 || function(x) {return Math.log(x) / Math.LN10;};});};page.viewportSize = { width: 600, height: 350 };page.clipRect = { top: 0, left: 0, width: 600, height: 350 };var score = 69.2;var url = 'http://localhost/AWSEC2/sparqapi/api?'+score;var image_url = 'C:/xampp/htdocs/ssa_external_data/testing/pd_reports/1792/chart.png' ;page.open(url,function() {setTimeout(function() {page.render(image_url);phantom.exit();}, 500);}); |