/ngCropperjs

AngularJS wrapper for https://github.com/fengyuanchen/cropperjs

Primary LanguageJavaScript

ngCropperjs

AngularJS module for https://github.com/fengyuanchen/cropperjs.

Fork and drop-in replacement of https://github.com/koorgoo/ngCropper

Install

npm install ng-cropperjs

Usage

<script src="node_modules/ng-cropperjs/dist/main.js"></script>
var app = angular.module('app', ['ngCropper']);

app.controller('Main', function(Cropper) {
    ...
});
<img src="image.jpg"
     ng-cropper
     ng-cropper-options="options"
     ng-cropper-show="'show.cropper'"
     ng-cropper-hide="'hide.cropper'">