I am trying to write image data received from Evernote getResourceData-method, into local system in JavaScript code using Node.js. The image file is getting saved successfully, but looks like it is corrupted, and I'm not able to open it.
The function getResourceData returns binary data of the resource with the provided GUID. For example, if this were an image resource, this would contain the raw bits of the image.
- Hex of original: http://i41.tinypic.com/ev8bnr.jpg
- Hex of downloaded: http://i41.tinypic.com/10rs7zm.jpg
Here's the code:
Client.js:
var onSuccess = function(resource, transport) {
self.showResourceData(resource);
//console.log("Got Resource: "+resource);
};
NoteStore.getResourceData(onSuccess,this.showAlertMessage.bind(this,
"Failed to get Resource"), inSender.getValue());
showResourceData: function(resource) {
//Calls WriteFileAssistant service
this.$.writeFile.call({ path: "/downloads/logo1.png", content: resource });
}
WriteFileAssistant.js:
WriteFileAssistant.prototype.run = function(future) {
var filePath = this.controller.args.path;
var content = this.controller.args.content;
var downloadfile = fs.createWriteStream(filePath,
{'flags': 'w', encoding: 'binary'});
downloadfile.write(content, encoding='binary', function(err) {
future.result = { path: filePath, bytes: content.length, error: err };
});
}
Any help will be greatly appreciated.
-Petro
downloadfile.write()inWriteFileAssistant.js. I believe that isn't valid JavaScript. Also, you could shorten your code a bit by usingfs.writeFile()– Morten Siebuhr Dec 28 '11 at 15:32this.controller.args.contentbeing set? What isthis.$.writeFile? It's the collecting ofcontentfordownloadFile.writethat is most likely the issue but you haven't included any of that process here. – Kato Dec 28 '11 at 16:35this.$.writeFileinvokes run method of WriteFileAssistant, and while calling this service, we set two parameters,{ path: "/downloads/logo1.png", content: resource }... these parameters are accessed in the service as shown below.var filePath = this.controller.args.path; var content = this.controller.args.content;– Petro Dec 28 '11 at 16:43contentis as likely as the write stream to be the culprit. – Kato Dec 28 '11 at 18:21