我知道如何使用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);
});
});
我该怎么做?