Files
jambotron/jambotron-ui/src/app/modules/user-module/dialog-cropp-image.component/dialog-cropp-image.component.html
T

20 lines
560 B
HTML

<p>dialog-cropp-image.component works!</p>
<mat-dialog-content class="mat-typography">
<image-cropper
[imageURL]="image"
style="width: 400px; height: 300px;"
[imageChangedEvent]="imageChangedEvent"
[maintainAspectRatio]="true"
[aspectRatio]="4 / 3"
format="png"
(imageCropped)="imageCropped($event)"
(imageLoaded)="imageLoaded($event)"
(cropperReady)="cropperReady()"
(loadImageFailed)="loadImageFailed()"
></image-cropper>
<img style="width: 358px; height: 200px" [src]="croppedImage" />
</mat-dialog-content>