2

我收到此错误:

Invalid value at 'requests[0].image.content' (TYPE_BYTES), "data:image/jpeg;base64,/9j/4AAQSkZJRgABAQAAAQABAAD/2wBDAAMCAgICAgMCAgIDAwMDBAYEBAQEBAgGBgUGCQgKCgkICQkKDA8MCgsOCwkJDRENDg8QEBEQCgwSExIQEw8QEBD/...

图像编码正确(它使用另一个需要相同 base64 编码的视觉搜索服务 metamind),这个调用有什么问题?

这是来自 AngularJS$http服务:

            $http({
                method: "POST",
                data: '{"requests":[{"image":{"content":"' + base64Img + '"},"features":[{"type":"LABEL_DETECTION","maxResults":1}]}]}',
                url: "https://vision.googleapis.com/v1/images:annotate?key=mykey27272772277227292992929"
            }).success(function (result) {
                console.log("SUCCESS");
                $scope.results = result;
                console.log(result);
            }).error(function (err) {
                console.log("FAIL");
                console.log(err);
            });

任何想法?

4

2 回答 2

2

我刚刚意识到他们不想要“data:image/jpeg;base64”部分,所以 base64Img.slice(23) 完成了这项工作

更新:由于切片在字符级别截断.slice(23)非常适用于 .png 和 .jpg(以及其他具有 3 个字符扩展名的类型),但如果用户上传类型“jpeg”,额外的字符会破坏您的数据:

var headerless = "data:image/jpeg;base64" 
headerless.slice(23)

这将输出:"data:image/jpeg;base6"剩下的 4 个会损坏您的数据。

我建议使用.replacewith 正则表达式来覆盖这个用例:

var image = <my image in b64 including header goes here>
var noHeader = image.replace(/^data:image\/(png|jpg|jpeg);base64,/, "")
于 2016-04-11T15:51:05.807 回答
0

您可以直接将 jpg 格式与 GCV 一起使用。以下对我有用:

var source = 'http://www.abhishek.info/wp-content/uploads/2015/07/6-ID-Card-for-Downtown-Motors-Pvt-Limited.jpg';
  var apikey = 'yourkeyXXXXXXXXXXxxxxxx';
  $scope.param = '{"requests": [ { "image": { "source": { "imageUri": "' + source + '" } }, "features": [ { "type": "TEXT_DETECTION" } ] } ] }';
  $scope.url = 'https://vision.googleapis.com/v1/images:annotate?key=' + apikey;
  var url = $scope.url;
  var data = $scope.param;
  var config = {
    headers: {
      'Content-Type': 'application/json; charset=utf-8'
    }
  };
  $http.post(url, data,config).then(
    function(response) {
      console.log(response);
    },
    function(response) {
      console.log(response);
    });

  })
于 2017-09-16T19:39:20.103 回答