Node.js:如何在服务器上将base64编码的图像另存为png / jpg

|| 我从客户端向服务器发送PNG作为base64字符串。我将其解码并保存到服务器。但是该文件不可读为png。我必须添加特定的标题吗?我究竟做错了什么?这是我的代码:
var base = decodedBase64;
fs.writeFile(\"/tmp/test.png\", base, function(err) {
  if(err) {
    console.log(err);
  } else {
    console.log(\"The file was saved!\");
  }
});
    
已邀请:
fs.writeFile(\"/tmp/test.png\", base, \"binary\", function(err) {
  if(err) {
    console.log(err);
  } else {
    console.log(\"The file was saved!\");
  }
});
默认值
encoding
utf-8
。您不想将其保存为文本,而是想将其保存为二进制数据,因此请使用“ 4”编码。     

要回复问题请先登录注册