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 }]
}
}