如何将字符串类型从API响应转换为图像文件 - ����\ u0000 \ u0010JFIF \ u0000 \ u0001 \ u0001 \ u0000 \ u0000 \ u0001 -

时间:2017-12-14 05:16:57

标签: javascript node.js microsoft-graph fs

我使用了 https://graph.microsoft.com/beta/me/photo/ $ value API来获取outlook用户的个人资料照片。我得到了一个关于在rest-client中运行上述API的图像。 API的内容类型是" image / jpg"

但是,在Node.js中,API的响应如下:

����\u0000\u0010JFIF\u0000\u0001\u0001\u0000\u0000\u0001\u0000\u0001\u0000\u0000��\u0000�\u0000\u0005\u0005\u0005\u0005\u0005\u0005\u0006\u0006\u0006\u0006\b\t\b\t\b\f\u000b\n\n\u000b\f\u0012\r\u000e\r\u000e\r\u0012\u001b\u0011\u0014\u0011\u0011\u0014\u0011\u001b\u0018\u001d\u0018\u0016\u0018\u001d\u0018+"\u001e\u001e"+2*(*2<66<LHLdd�\u

我使用了&#f;&#39;创建一个图像文件。代码如下:

const options = {  
    url: "https://graph.microsoft.com/beta/me/photo/$value",
    method: 'GET',
    headers: {
        'Accept': 'application/json',
        'Authorization': `Bearer ${locals.access_token}`,
        'Content-type': 'image/jpg',
    }
};

request(options, (err, res, body) => {  
    if(err){
        reject(err);
    }
    console.log(res);
    const fs = require('fs');
    const data = new Buffer(body).toString("base64");
    // const data = new Buffer(body);
    fs.writeFileSync('profile.jpg', data, (err) => {
        if (err) {
            console.log("There was an error writing the image")
        }
        else {
            console.log("The file is written successfully");
        }
    });
});

文件写入成功,但生成的.jpg图像文件已损坏。我无法打开图像。 图像文件的输出如下:

77+977+977+977+9ABBKRklGAAEBAAABAAEAAO+/ve

3 个答案:

答案 0 :(得分:3)

您可以通过像这样流式传输

来实现此目的
request(options,(err,res,body)=>{
  console.log('Done!');
}).pipe(fs.createWriteStream('./profile.jpg'));

https://www.npmjs.com/package/request#streaming

https://nodejs.org/api/fs.html#fs_class_fs_writestream

答案 1 :(得分:0)

原因是默认情况下,request会在响应数据上调用.toString()。对于二进制数据,如RAW JPEG,这不是你想要的。

它也在request文档中解释过(虽然含糊不清):

  

注意:如果您需要二进制数据,则应设置encoding: null。)

这意味着你也可以使用它:

const options = {  
  encoding : null,
  url      : "https://graph.microsoft.com/beta/me/photo/$value",
  method   : 'GET',
  headers  : {
    'Accept'        : 'application/json',
    'Authorization' : `Bearer ${locals.access_token}`,
    'Content-type'  : 'image/jpg',
  }
};

然而,流媒体可能仍然是更好的解决方案,因为它不会要求将整个响应首先读入内存。

答案 2 :(得分:0)

请求为deprecated。您可以使用axios完成此操作;

// GET request for remote image in node.js
axios({
  method: 'get',
  url: 'http://example.com/file.jpg',
  responseType: 'stream'
})
  .then(function (response) {
    response.data.pipe(fs.createWriteStream('ada_lovelace.jpg'))
  });