如何将cropperjs裁剪区域设置为圆形。我使用 angular/typescript 和 ngx-img 模块。
这是我的 component.html 代码:
<ngx-img (onSelect)="imgEditorOnSelect($event)"
(onReset)="imgEditorOnReset()"
[config]="img_editor_config">
</ngx-img>
还有我的 component.ts 代码:
ngOnInit() {
/**
* configuracion para el cropperjs
* https://fengyuanchen.github.io/cropperjs/
*/
this.img_editor_config = {
crop: [{ ratio: 2 / 3, viewMode: 3 }]
}
}