我已经从服务器以字节数组形式发送了图像文件。现在,我必须将其转换为jpeg
文件并将其显示在网页中。
代码:
app.get('/getPhoto/:hash',function(req, res){
console.log(req.params.hash);
invoke = require('/Users/sanjeev.natarajan/ipfs/file1.js');
invoke.getfile(req.params.hash).then((str)=>{
console.log("resu",str)
res.send({"Result":str});
})
.catch((error) => {
res.send({"Error":"error in fetching the file through the hashcode"});
})
});
我正在从后端接收数据;现在我需要将其转换为angular6中的图像
答案 0 :(得分:1)