Angular image cropper
Live example
To see a live example, go to the demo's page.
Description
Angular image cropper is inspired of the popular Guillotine jQuery plugin that allows to drag, zoom or rotate an image to select a cropping area. Like selecting the display area of a profile picture or avatar.
- Responsive: The window (or selection area) is fully responsive (fluid)
- Touch support: Dragging the image also works on touch devices
- API: Provide an API to do more action with code
- No needs of jQuery: Written in pure javascript
Installation
NPM
Usingnpm install angular-image-cropper
Bower (not recommended)
Usingbower install https://unpkg.com/angular-image-cropper/bower.zip
Or if you want to install a specific version (e.g: for 1.1.4):
bower install https://unpkg.com/angular-image-cropper@1.1.4/bower.zip --save
Usage
Load the required files
Using modules
Just require the module when you declare your module's dependencies:
var angular = ;angular ;
Using script tags
Just import the angular-image-cropper
javascript file in your index.html
:
Add the module as dependency to your main application module like this:
angular;
The directive
Options
Angular image cropper comes with some options to simplify your development:
image-url
string Source image that will be cropped, can be an URL or base64width
string Width of the cropped imageheight
string Height of the cropped imagezoom-step
string Zoom stepfit-on-init
boolean Fit the image on cropper initialization (keep the ratio)center-on-init
boolean Center the image on cropper initializationshow-controls
boolean Display or not the control buttons (true
by default)check-cross-origin
boolean Enable cross origin or notcrop-callback
function Function executed with base64 cropped image as argument when when crop control is clicked
vm { vmresultImage = base64; $scope; // Apply the changes.};
api
function Function executed with cropper's API as argumentaction-labels
object Give you the ability to customize button labels by passing an object like
vmmyButtonLabels = rotateLeft: ' (rotate left) ' rotateRight: ' (rotate right) ' zoomIn: ' (zoomIn) ' zoomOut: ' (zoomOut) ' fit: ' (fit) ' crop: ' <span class="fa fa-crop">[crop]</span> ' // You can pass html too.
Api
Angular image cropper gives you access to the api, you can see an example here:
// Cropper API available when image is ready.vm { api; api; api; api; vmresultImage = api;};
crop
function return the cropped image inbase64
fit
function fit the image to the wrapper dimensions (keep the ratio)rotate
function Apply the rotation with degrees given, should be a modulo of 90 (90, 180, 270, 360), can be negativezoomIn
function Apply the zoomIn givenzoomOut
function Apply the zoomOut givenremove
function Remove the cropper
License
The MIT License (MIT)