I send from client to server a PNG as a base64 string. I decode it back and save to server. But the file is not readable as a png. Do I have to add specific headers? What am I doing wrong? Here's my code:
var base = decodedBase64;
fs.writeFile("/tmp/test.png", base, function(err) {
if(err) {
console.log(err);
} else {
console.log("The file was saved!");
}
});
encoding– Raynos Apr 14 '11 at 21:02