canva

编辑器画布, 该对象为 2.0 版本添加


编辑器画布,目前可以在画布中自定义添加图片

注意: canva 对象 一开始为 null 需要在模板加载完毕后才创建, 所以需要在 onTemplateLoad 方法执行过后进行画布操作。

方法

canva.addImage

版本: 2.0+

类型: (url: string, options?: { width: number; height: number }) => Promise<void>

在画布中插入图片

const editor = window.gaoding.createTemplateEditor({
    appId: '在稿定开放平台应用详情里查看',
});
editor.createDesign();
editor.onTemplateLoad(() => {
    editor.canva.addImage(
        'https://st0.dancf.com/static/02/202104280136-0091.png',
        { width: 1000, height: 1000 }
    )
})