Angular directive that brings jCrop into Angular.
Table of Contents generated with DocToc
To download it now, simply do the following:
$ bower install angular-crop --save
After that, remember to include following files in your template (or if you are using something like main-bower-files
for gulp - just run it).
<link rel="stylesheet" href="bower_components/jcrop/css/jquery.Jcrop.css" />
<script src="bower_components/jquery/dist/jquery.js"></script>
<script src="bower_components/angular/angular.js"></script>
<script src="bower_components/jcrop/js/jquery.Jcrop.js"></script>
<script src="bower_components/ng-jcrop/ng-jcrop.js"></script>
First of all, add angular-crop
as dependency to your existing application by doing the following:
var yourModule = angular.module("yourModule", ['angular-crop']);
Next, apply angular-crop
directive on any <img>
element inside your template, like so:
<img ng-src="{{ imageUrl }}" angular-crop></div>
All the attributes specified by jcrop
docs are available.
For further explanation please refer to its documentation here.
Same as above.
- Following callbacks are available:
- onChange - called on every crop change
- onRelease - called on focus out when cropping is finished
- onSelect - called when cropping has stopped but area is still focused
Callbacks should be passed as e.g. data-on-change="myScopeOnChangeMethod"
. Every callback receives coordinates
argument that looks like below:
{
h: 149
w: 187
x: 201
x2: 388
y: 52
y2: 201
}
This repository uses Airbnb javascript style guide along with jscs
tests to make sure all the requirements are fulfilled. Before doing a pull request, please double check your code.
As original repository has been licensed under GPL license and that was changed here to MIT, the whole project has been rewritten from scratch to avoid any legacy issues that may occur in the future. Although to appreciate original author efforts and in order to say thank you for inspiration he gave me I've decided to fork his repository instead of creating a new one.
As original repository seems to be abandoned, the purpose of this fork is to carry on further development to allow easy usage of JCrop in other projects.
- Following things are included in the roadmap
- add ability to upload files (HTML5 input)
- add extra parameter 'thumbnail' to display preview of cropped image
- ability to export image as base64 string
- you tell me