We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
需要修改SimpleClipImagePlugin.ts代码
在shell.on('deselected', 中加入 clipPath.rotate((clipPath.angle || 0) - (activeObject.angle || 0));
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(); });
需要使用裁剪原本的旋转值和消除素材的旋转值带来的影响。
示例视频
The text was updated successfully, but these errors were encountered:
No branches or pull requests
需要修改SimpleClipImagePlugin.ts代码
在
shell.on('deselected',
中加入clipPath.rotate((clipPath.angle || 0) - (activeObject.angle || 0));
需要使用裁剪原本的旋转值和消除素材的旋转值带来的影响。
示例视频
output.mp4
The text was updated successfully, but these errors were encountered: