我有下面的代码,编辑器加载并且不给出错误。但是,它不会强制裁剪/调整图像大小。我直接从示例中复制了配置,..(主题除外)但它不知何故不起作用。
任何人都可以帮忙吗?
aviaryObject = new Aviary.Feather({
apiKey: 'xxxx',
apiVersion: 3,
tools: 'all',
theme: 'light',
onSave: function(imageID, newURL) {
var img = document.getElementById(imageID);
img.src = newURL;
},
onError: function(errorObj) {
alert(errorObj.message);
}
});
aviaryObject.launch({
image: 'imgId',
url: [server-url],
forceCropPreset: ['Logo','150x150'],
forceCropMessage: 'Please crop your photo to this size',
});