ngx-image-cropper - 如何仅更改裁剪器的长度或宽度

ngx-image-cropper - how change only the length or width of a cropper

在我的 angular 9 项目中,我使用了 ngx-image-cropper,它工作正常。这是我的收割机代码:

<image-cropper
  [imageChangedEvent]="imageChangedEvent"
  [imageURL]="imageUrl"
  [transform]="transform"
  [maintainAspectRatio]="true"
  [aspectRatio]="aspectRatio"
  [canvasRotation]="canvasRotation"
  (imageCropped)="imageCropped($event)"
></image-cropper>

我可以在横向、纵向和方形中使用剪裁器,还可以缩放、旋转、翻转、重置剪裁后的图像。但是,当我更改裁剪器宽度时,高度会根据宽度而变化。我怎样才能只改变裁剪器的长度或宽度。enter image description here

尝试改变

  [maintainAspectRatio]="false"