从选定的画布图像中获取所选图像大小的高度,宽度

时间:2018-05-25 11:56:04

标签: html html5 canvas html5-canvas

{left: 51, right: 508, top: 676, bottom: 477}

从裁剪后的图像获得上限, 我只想要这个计算的高度和宽度这可能吗? You can see in this image

或者有任何属性可以获得吗?

1 个答案:

答案 0 :(得分:0)

$scope.canvasWidth = $scope.bounds.right - $scope.bounds.left;
$scope.canvasHeight = $scope.bounds.top - $scope.bounds.bottom;
  • 您可以从上面的计算中获得宽度和高度
  • 我希望能帮助其他人