никак изображение нимогу сохранитЬ, есть изображение
http://hsto.org/files/59f/f05/718/59...e54ea5e2b3.png, загружаю его в браузер и дальше что?
вот код, загружаю страницу и сразу ошибка вылазит
var webpage=require('webpage');
//var fs=require('fs');
var url="http://hsto.org/files/59f/f05/718/59ff0571875a45e79162ebe54ea5e2b3.png";
var page=webpage.create();
page.open(url,function(status){
if(status==="success"){
// page.render("img.png");
// console.log(page.content);
// fs.write("img1.png",page.content,"w");
phantom.exit();
}
else{
phantom.exit();
}
});
Ошибка:
E:\project_web\porject2>phantomjs test5.js
PhantomJS has crashed. Please read the crash reporting guide at
<http://phantomjs.org/crash-reporting.html> and file a bug report at
<https://github.com/ariya/phantomjs/issues/new>.
Please attach the crash dump file:
C:\TEMP\28edde00-9364-4e54-ae01-4cb6df7a9cc8.dmp
Если раскоментировать строки, то в img.png изображение но маленькое, а в img1.png испорченое изображение. Нужно как то загрузить, а как хз.
Мб. как то можно изображение загрузить по ссылке с помощью просто javaScript без phantomjs????