5

使用 React 构建一个简单的 AWS Rekognition 演示,使用<input type="file">

得到Invalid image encoding错误。

let file = e.target.files[0];
let reader = new FileReader();

reader.readAsDataURL(file);

reader.onloadend = () => {
  let rekognition = new aws.Rekognition();

  var params = {
    Image: { /* required */
      Bytes: reader.result,
    },
    MaxLabels: 0,
    MinConfidence: 0.0
  };

  rekognition.detectLabels(params, function(err, data) {
    if (err) console.log(err, err.stack); // an error occurred
    else     console.log(data);           // successful response
  });

在此处输入图像描述

GitHub 仓库:https ://github.com/html5cat/vision-test/

GitHub 问题:https ://github.com/html5cat/vision-test/issues/1

4

3 回答 3

6

您可以尝试将 reader.result 转换为二进制字节。

function getBinary(encodedFile) {
        var base64Image = encodedFile.split("data:image/jpeg;base64,")[1];
        var binaryImg = atob(base64Image);
        var length = binaryImg.length;
        var ab = new ArrayBuffer(length);
        var ua = new Uint8Array(ab);
        for (var i = 0; i < length; i++) {
          ua[i] = binaryImg.charCodeAt(i);
        }

        var blob = new Blob([ab], {
          type: "image/jpeg"
        });

        return ab;
      }

您基本上可以为字节设置上述方法的响应:

 Bytes: getBinary(reader.result),
于 2017-04-30T03:25:19.750 回答
4

如果有人在 Node 端执行此操作,我在将文件作为字节数组缓冲区读取并将其发送到 Rekognition 时遇到了类似的问题。

我通过读取 base64 表示来解决它,然后将其转换为如下所示的缓冲区:

const aws = require('aws-sdk');
const fs = require('fs');

var rekognition = new aws.Rekognition({
  apiVersion: '2016-06-27'
});

// pull base64 representation of image from file system (or somewhere else)
fs.readFile('./test.jpg', 'base64', (err, data) => {

  // create a new base64 buffer out of the string passed to us by fs.readFile()
  const buffer = Buffer.from(data, 'base64');

  // now that we have things in the right type, send it to rekognition
  rekognition.detectLabels({
      Image: {
        Bytes: buffer
      }
    }).promise()
    .then((res) => {

      // print out the labels that rekognition sent back
      console.log(res);

    });
    
});

这也可能与人们收到:Expected params.Image.Bytes to be a string, Buffer, Stream, Blob, or typed array object消息有关。

于 2017-08-02T00:07:15.227 回答
0

ReadAsDataUrl 的返回值包含一个前缀,指示数据的 MIME-TYPE 和编码。(“图像/png;base64, IVBORsdafasdfasf...”)。

但是,Rekognition API 只需要图像的编码字节,没有任何前缀。

尝试reader.result.split(',')[1]过滤掉前缀并仅传递请求中的编码字节。

于 2017-04-25T01:17:13.567 回答