Add more open options
All checks were successful
FarmMaps.Develop/FarmMapsLib/pipeline/head This commit looks good
All checks were successful
FarmMaps.Develop/FarmMapsLib/pipeline/head This commit looks good
This commit is contained in:
parent
33adb35923
commit
08163f86bf
@ -14,9 +14,11 @@
|
||||
<image-cropper #imageCropper
|
||||
[imageChangedEvent]="imageChangedEvent"
|
||||
[maintainAspectRatio]="true"
|
||||
format="jpeg"
|
||||
[format]="imageType"
|
||||
[aspectRatio]="aspectRatio"
|
||||
[autoCrop]="true"
|
||||
[resizeToWidth]="maxWidth"
|
||||
[roundCropper]="roundImage"
|
||||
(imageCropped)="imageCropped($event)"
|
||||
(imageLoaded)="imageLoaded($event)"
|
||||
(cropperReady)="cropperReady()"
|
||||
|
@ -22,14 +22,20 @@ export class EditImageModalComponent implements OnInit {
|
||||
croppedImage: string = '';
|
||||
endpointUrl:string = null;
|
||||
imageUrl:string = null;
|
||||
maxWidth:number = 200;
|
||||
roundImage:boolean = false;
|
||||
imageType:string = "jpeg";
|
||||
|
||||
ngOnInit(): void {
|
||||
}
|
||||
|
||||
open(endpoint:string,aspectRatio:number) {
|
||||
open(endpoint:string,aspectRatio:number,roundImage?:boolean,maxWidth?:number, imageType?:string) {
|
||||
this.endpointUrl = endpoint;
|
||||
this.imageUrl = endpoint;
|
||||
this.aspectRatio= aspectRatio;
|
||||
this.roundImage = roundImage === undefined?this.roundImage:roundImage;
|
||||
this.maxWidth = maxWidth === undefined?this.maxWidth:maxWidth;
|
||||
this.imageType = imageType === undefined?this.imageType:imageType.substr(6);
|
||||
this.modalService.open(this.modal,{ size: 'lg' });
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user