0

在 HTML5 版本中不能为文本工具自定义变换比率和字体。

var editor = new PhotoEditorSDK.UI.DesktopUI({
controlsOptions: {
    transform: {
        availableRatios: [
            'imgly_transform_common_custom',
            'imgly_transform_common_square',
            'imgly_transform_common_4-3',
            'imgly_transform_common_16-9'
        ]
    },
    text: {
        replaceFonts: true,
        fonts: [
            {
                fontFamily: 'Alegreya', // The font family name, defined by Google Fonts
                variations: [
                    {
                        identifier: 'alegreya',
                        provider: 'google' // This loads the font from Google Fonts
                    }
                ]
            }
        ]
    }
}});

但什么都没有改变。请帮忙。

4

1 回答 1

0

发现错误,controlsOptions 必须在编辑器对象内。

于 2017-12-20T13:16:38.167 回答