Image Cropper using Croppie
Bower: bower install angular-croppie
Npm: npm install angular-croppie
Add the dependency: angular.module('myApp', ['angularCroppie'])
.
Use the Angular 1.5 component:
<croppie src="cropped.source" ng-model="cropped.image"></croppie>
or with Croppie options:
<croppie src="cropped.source" ng-model="cropped.image" options="{ viewport: { width: 400, height: 280 } }"></croppie>
Simple Example: plnkr