15

我需要通过 drupal 服务/文件将图像保存到 Drupal。据我了解,我需要将文件解码为 base64 并将其作为服务/文件的有效负载发送。我怎样才能编码才能做到这一点????我想在javascript中做到这一点。

4

6 回答 6

27

我是@GrimurD 提到的angular-base64-upload的作者。该指令非常适合这种情况。它将图像(或任何其他文件类型)解析为 base64 编码并将文件信息附加到您范围内的模型。

示例用法:

<input type='file' ng-model='yourModel' base-sixty-four-input>

选择文件后,yourModel其值将类似于:

{
  "filetype": "text/plain",
  "filename": "textfile.txt",
  "base64": "/asdjfo4sa]f57as]fd42sdf354asdf2as35fd4"
}

它还包含使用 PHP 或 ruby​​ 对服务器中的 base64 文件进行解码的示例代码。

于 2014-10-16T16:10:12.883 回答
11

我知道它已经很老了,但我来这里是为了解决问题。

最后我发现(如果你不想使用外部库)在 base 64 中加载图像就像使用 javascript FileReader.readAsDataURL()

希望我的最终代码能帮助像我这样的其他初学者。它的特点:

  • 使用 HTML5 输入文件(受此答案input type='file'启发)
  • 触发来自其他 html 元素的输入(受此答案启发)
  • 检查浏览器是否支持(受此答案input type='file'启发)

它也在codepen上

angular.module('starter', [])
  .controller('Ctrl', function($scope) {
    $scope.data = {}; //init variable
    $scope.click = function() { //default function, to be override if browser supports input type='file'
      $scope.data.alert = "Your browser doesn't support HTML5 input type='File'"
    }

    var fileSelect = document.createElement('input'); //input it's not displayed in html, I want to trigger it form other elements
    fileSelect.type = 'file';

    if (fileSelect.disabled) { //check if browser support input type='file' and stop execution of controller
      return;
    }

    $scope.click = function() { //activate function to begin input file on click
      fileSelect.click();
    }

    fileSelect.onchange = function() { //set callback to action after choosing file
      var f = fileSelect.files[0],
        r = new FileReader();

      r.onloadend = function(e) { //callback after files finish loading
        $scope.data.b64 = e.target.result;
        $scope.$apply();
        console.log($scope.data.b64.replace(/^data:image\/(png|jpg);base64,/, "")); //replace regex if you want to rip off the base 64 "header"

        //here you can send data over your server as desired
      }

      r.readAsDataURL(f); //once defined all callbacks, begin reading the file

    };


  });
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.2.20/angular.min.js"></script>

<body ng-app='starter' ng-controller='Ctrl'>
  <button ng-click='click()'>click to select and get base64</button>
  <br>BASE 64 data:
  <br>
  <span style='color: red'>{{data.alert}}</span>
  <div style='word-wrap:break-word'>
    {{data.b64}}
  </div>
</body>

于 2015-11-05T10:15:20.890 回答
8

我建议您使用https://github.com/ninjatronic/angular-base64

遵循使用此库的说明后,您可以简单地调用:

var imageData=$base64.encode(image);

不要忘记注入你的模块:

.module('myApp', ['base64'])
于 2014-07-22T06:27:34.587 回答
0

我发现了一些网站,像 chrome 之类的浏览器,ie10 ..可能支持这个 https://developer.mozilla.org/en-US/docs/Web/API/FileReader?redirectlocale=en-US&redirectslug=DOM%2FFileReader

http://www.pjhome.net/web/html5/encodeDataUrl.htm

于 2013-07-09T14:01:27.593 回答
0

你不需要 AngularJs。这里有一个线程解释如何使用 Javascript 和画布进行操作:How to convert image into base64 string using javascript

于 2013-07-09T13:58:24.207 回答
0

我遇到了同样的问题,并在 github 上遇到了这个存储库。试了一下,效果很好。

于 2014-09-13T22:47:19.050 回答