按下按钮时图像旋转 croppermaster

Image rotation on button press croppermaster

我正在使用 this 插件来裁剪图像,我想在裁剪工具中旋转图像。我正在使用以下代码初始化裁剪器。

$('#image').cropper({
  aspectRatio: 7 / 5,
  viewMode: 1,
  dragMode: 'move',
  autoCropArea: 0.65,
  restore: false,
  guides: false,
  highlight: false,
  width: 100,
  height: 100,
  cropBoxMovable: false,
  cropBoxResizable: false,
  toggleDragModeOnDblclick: false,
  minCropBoxWidth: 350,
  minCropBoxHeight: 200,
  strict: false
});

这是图像的 HTML 和旋转图像的按钮,如下所示

<div>
   <img id="image" src="images/AddImage.png" class="userUpload" alt="Picture" />
</div>
<button type="button" class="btn btn-secondary" data-method="rotateTo" data-option="90" id="rotateImage">
    <span class="docs-tooltip" data-toggle="tooltip" title="$('#image').cropper.rotate(90)">
       Rotate 90°
    </span>
 </button>

此外,我还有以下 javascript 函数,可以处理图像的旋转。

$("#rotateImage").click(function () {
  $('#image').cropper.setCanvasData({ rotate: 90 });
});

但是,我在控制台中收到以下错误。

Tools.js:993 Uncaught TypeError: $(...).cropper.setCanvasData is not a function

有没有人对我尝试旋转图像时出错的地方有任何建议?

谢谢。

here

您可以尝试使用

调用方法的替代方法
$('#image').cropper.('rotate',90);