1

我想使用Exif.js从本地文件中读取 JPEG EXIF 标签。但是,javascript lib 用于XMLHttpRequest将 JPG 文件读取为BinaryFile

function getImageData(oImg, fncCallback) 
{
    BinaryAjax(
        oImg.src,
        function(oHTTP) {
            var oEXIF = findEXIFinJPEG(oHTTP.binaryResponse);
            oImg.exifdata = oEXIF || {};
            if (fncCallback) fncCallback();
        }
    )
}

当我使用时, <input type="file">我得到一个 HTML5File对象,我可以使用 a 读取它,FileReader但我不知道如何将其转换为 a BinaryFile

_initHTML5FileReader = function() {
  var chooseFile;
  chooseFile = document.getElementById("html5-get-file");
  chooseFile.onchange = function(e) {
    var file;
    file = e.currentTarget.files[0];
    var reader;
    reader = new FileReader();
    reader.onloadend = function(ev) {
      var dataUrl = ev.target.result;
      // How do I change this to a BinaryFile???
    };
    reader.readAsDataURL(file);
    return false;
  };
};

但是我也使用了 AppGyver Steroids (PhoneGap),它为我的页面提供服务http://localhost/index.html,当我尝试使用 Exif.js 时,我收到了这个 CORS 错误:

XMLHttpRequest cannot load data:image/jpeg;base64,/9j/4X2cRXhpZgAASUkqAAgAAAAOAA8BAgAKAAAAtgAAABABAgAI…N6gn14dm6BmJyMdYaMhX16hI+HgIWLj5aWkJOaiHF7hoV+dnBwc3Jzbm14hGlZcIaWlXFEU3OB. Received an invalid response. Origin 'http://localhost:4000' is therefore not allowed access.

有什么方法可以配置 XmlHttpRequest 以提供本地 File 对象而不会出现 CORS 错误?

4

0 回答 0