小编Yur*_*kiy的帖子

AWS Rekognition JS SDK 无效图像编码错误

使用 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
  });
Run Code Online (Sandbox Code Playgroud)

在此处输入图片说明

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

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

amazon-web-services reactjs amazon-rekognition

5
推荐指数
1
解决办法
4521
查看次数