Skip to content

裁剪功能:先旋转素材,然后加入裁剪图形,完成后,裁剪图形位置和旋转都非编辑时的效果 #501

Open
@momo2019

Description

@momo2019

需要修改SimpleClipImagePlugin.ts代码

shell.on('deselected', 中加入 clipPath.rotate((clipPath.angle || 0) - (activeObject.angle || 0));

shell.on('deselected', () => {
  if (clipPath instanceof fabric.Ellipse && shell instanceof fabric.Ellipse) {
    // .....
  }
  clipPath.rotate((clipPath.angle || 0) - (activeObject.angle || 0)); // 加入这行代码
  activeObject.set('dirty', true);
  this.canvas.remove(shell);
  this.canvas.requestRenderAll();
});

需要使用裁剪原本的旋转值和消除素材的旋转值带来的影响。

示例视频

output.mp4

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions