1

我正在使用 npm 包clarifai来访问 Clarifai API。我需要使用该getTagsByImageBytes功能,但我得到了这个答案:

{"status_code":"ALL_ERROR","status_msg":"请求中的所有图像均失败。请查看每个图像的错误消息。","meta":{},"results":[{"docid":2.0371991595148082e +38,"status_code":"CLIENT_ERROR","status_msg":"数据加载失败,详见结果。","local_id":"","re​​sult":{"error":"数据0无效因为:数据已损坏或数据类型不受支持.."},"docid_str":"99430754f1cd37d149b992bc635f685f"}]}

我的图像编码有问题。到目前为止,这是我尝试获取它的方式(path是我的图像的本地路径和bytes我想发送给 Clarifai 的变量):

const fs = require('fs');
let path = 'path/to/any/image';
let buffers = [];
let bytes;
// creating a reading stream
const readable = fs.createReadStream(path);

// the read content is added to the buffer array
readable.on('data', (chunk) => {
    buffers.push(chunk);
});

// all the data read are joined in a single buffer
readable.on('end', () => {
    bytes = Buffer.from(buffers.join(), 'binary').toString('base64');
    // here the goal is to have a valid base64 encoded image
    console.log(bytes);
});

我也没有成功尝试发送JSON.stringify.toString版本。我想我错过了对预期字节数组的理解,有人可以帮助我吗?

谢谢!

更新:我更改了上面的代码和错误消息以更新我的最后一次尝试。

4

1 回答 1

0

好的,所以我有一个解决方案。当我使用此答案中的代码时,它实际上是有效的:NodeJS base64 image encoding/decoding not fully working

我的功能变成了:

let path = 'my/path/to/image';
fs.readFile(path, function(err, original_data){
   if(err){
       return;
   }
   else{
       // this variable contains the correctly encoded image. Just use it as it is in the Clarifai API
       var base64Image = original_data.toString('base64');
       console.log(base64Image);
   }
});

我希望它可以帮助其他人。玩得开心!

于 2016-09-22T03:30:02.057 回答