我正在使用croppie js在我的项目中加载图像,图像在Chrome和&amp ;; Firefox浏览器。
这是我在Chrome和Firefox上获得的内容
,这在Internet Explorer 11上。
这是我的代码
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上会出现这个问题?
答案 0 :(得分:0)
我使用enableExif: true
和exif.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,
});