2016-03-13 72 views
0

我的路線上我的流星應用:服務的NodeJS從圖像的base64

this.route("/userimg/:id", function(){ 
     console.log("hello"); 
     img_base64 = Meteor.users.findOne(this.params.id).userimage; 
     this.response.writeHead(200, {'Content-Type': 'image/png' }); 

    },{where: 'server'}); 

有了這個途徑我想從我的蒙戈收集服務Userimages。 我在我的集​​閤中有一個base64編碼圖像並將其保存到varibale img_base64。 我的問題是,我需要做什麼與我的base64變量作爲一個PNG響應它? 我需要somthing像this.response.end(img_base64,....)。 感謝您的幫助!

回答

2

這是字面上所有你需要的(假設img_base64是一個字符串):

this.response.end(img_base64, 'base64'); 
+0

簡單的工作,THX – ant45de