使用请求从url下载图像并保存到变量

时间:2014-03-05 02:05:57

标签: javascript node.js stream request pipe

有没有我可以从request下载图像并将其保存到变量?

request.head(url, function(err, res, body){

   request(url).pipe(fs.createWriteStream(image_path));

});

现在我将piping结果写入写入流。但我想把它保存到一个变量,所以我可以在我的程序中使用它。有没有办法做到这一点?

1 个答案:

答案 0 :(得分:4)

您要求的是图片,因此您可以将回复设为Buffer

var request = require('request'), fs = require('fs');

request({
    url : 'http://www.google.com/images/srpr/logo11w.png',
    //make the returned body a Buffer
    encoding : null
}, function(error, response, body) {

    //will be true, body is Buffer( http://nodejs.org/api/buffer.html )
    console.log(body instanceof Buffer);

    //do what you want with body
    //like writing the buffer to a file
    fs.writeFile('test.png', body, {
        encoding : null
    }, function(err) {

        if (err)
            throw err;
        console.log('It\'s saved!');
    });

});