如何将base64映像发送到节点js服务器

时间:2016-06-01 21:15:57

标签: javascript node.js image base64

我知道如何使用HTML页面上的javascript从画布中检索base64图像:

var url =  canvas.toDataURL("image/png");   
url.replace(/^data:image\/(png|jpg);base64,/, ""); 

现在我想将此信息发送到服务器并创建图像。 我想做点什么:

router.post('/createImage', function (req, res) {

    var base64image = //i need to get the base64 image here 
    var picPath = path.normalize('./public/images/users/pic.png');

    fs.writeFile(picPath, url, 'base64', function(err) {
      console.log(err);
    });
});

我该怎么做?

0 个答案:

没有答案