Croppie js图像仅在IE 11中加载

时间:2018-04-13 09:20:55

标签: internet-explorer-11 croppie

我正在使用croppie js在我的项目中加载图像,图像在Chrome和&amp ;; Firefox浏览器。
这是我在Chrome和Firefox上获得的内容

enter image description here

,这在Internet Explorer 11上。

enter image description here

这是我的代码

var basic = $("#div" + selector).croppie({
         viewport: {
            width: 200,
            height: 200
        },
        boundary: {
            width: widthContainer,
            height: 300
        },
        showZoomer: true,
        enforceBoundary:true
   });
 var bindPromise =  basic.croppie('bind', {
       url: path
       });

    $("#pnlcrop .cropcontainer div.croploader").remove();
    $("#div" + selector).show();
  }

有谁能告诉我为什么IE11上会出现这个问题?

1 个答案:

答案 0 :(得分:0)

我使用enableExif: trueexif.js解决了问题。

这是我的固定代码:

 $("#div" + selector).croppie('destroy');

    var basic = $("#div" + selector).croppie({
    enableExif: true,
         viewport: {
            width: 200,
            height: 200
        },
        boundary: {
            width: widthContainer,
            height: 300
        },
        showZoomer: true,
        enforceBoundary:true
   });
 var bindPromise =  basic.croppie('bind', {
       url: path,
      });