0

我有下面的代码,编辑器加载并且不给出错误。但是,它不会强制裁剪/调整图像大小。我直接从示例中复制了配置,..(主题除外)但它不知何故不起作用。

任何人都可以帮忙吗?

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',
});
4

1 回答 1

0

找到了解决方案,因为我使用的是 https,所以我必须加载一个不同的脚本文件。因此,如果您想通过 https 连接使用 aviary,请使用:

https://dme0ih8comzn4.cloudfront.net/js/feather.js
于 2014-08-04T13:28:30.257 回答