I have an image and need to resize it by dragging its corners, are there any options in angularjs?
At the moment I am doing manual image size as follows:
<img src="~/Content/images/login-logo.png" width="{{image.width}}" height="{{image.size}}"/> <div class="right-wrapper"> <h3 class="right-head">Appearance <img src="~/Content/images/info-icon.png"></h3> <div ng-if="isImage"> <div ng-class="form-group"> size <input class="form-control" type="textbox" ng-model="image.size" /> </div> <div ng-class="form-group"> width <input class="form-control" type="textbox" ng-model="image.width" /> </div> </div> </div>
But I want to resize it by dragging its corners.
source share