A simple jQuery image cropping plugin.
- Supports touch
- Supports zoom
- Supports rotation
- Supports canvas
- Supports options
- Supports methods
- Supports events
- Cross-browser support
dist/
├── cropper.css ( 5 KB)
├── cropper.min.css ( 4 KB)
├── cropper.js (36 KB)
└── cropper.min.js (15 KB)
Four quick start options are available:
- Download the latest release.
- Clone the repository:
git clone https://github.com/fengyuanchen/cropper.git
. - Install with NPM:
npm install cropper
. - Install with Bower:
bower install cropper
.
Include files:
<script src="/path/to/jquery.js"></script><!-- jQuery is required -->
<link href="/path/to/cropper.css" rel="stylesheet">
<script src="/path/to/cropper.js"></script>
Initialize with $.fn.cropper
method.
<!-- Wrap the image with a block element -->
<div class="container">
<img src="picture.jpg">
</div>
$(".container > img").cropper({
aspectRatio: 16 / 9,
done: function(data) {
// Crop image with the result data.
}
});
Notes:
- The size of the cropper inherits from the size of the image's parent element, so be sure to wrap the image with a visible block element.
- The values of the result data was computed with the original size of the image, so you can use them to crop the image directly.
You may set cropper options with $().cropper(options)
.
If you want to change the global default options, You may use $.fn.cropper.setDefaults(options)
.
- type: string / number
- default: "auto"
The aspect ratio of the cropping zone. By default, the cropping zone is free ratio.
- type: object
- default: {}
- example:
{
x: 100,
y: 50,
width: 480,
height: 270,
rotate: 0
}
Only supports five properties: "x", "y", "width", "height" and "rotate".
By default, the cropping zone will appear in the center of the image. If you already have values of the last crop and you want to apply them, just set them as option.
Tips: It's possible to save the data in cookie or somewhere else and then re-render the cropper after a refresh the page using the data you have.
- type: function
- default:
function(data) {}
This function will be executed when the cropping zone changes by a move, resize or crop.
- type: selector
- default: ""
A jquery selector, add extra elements for a preview.
- type: boolean
- default: false
By default, the plugin only supports one cropper per page. If you intend to use more than one, just initialize them with this option set to true
.
- type: boolean
- default: true
Show (true) or hide (false) the black modal layer above the cropper.
- type: boolean
- default: true
Show (true) or hide (false) the dashed lines above the cropping zone.
- type: boolean
- default: true
Render the cropping zone automatically when initialize.
- type: boolean
- default: true
Enable to remove the current cropping zone and create a new one by dragging over the image.
- type: boolean
- default: true
Enable to move the cropping zone.
- type: boolean
- default: true
Enable to resize the cropping zone.
- type: boolean
- default: true
Enable to zoom the image.
- type: boolean
- default: true
Enable to rotate the image.
- type: number
- default: 0
The minimum width (px of original image) of the cropping zone. Use this option only when you are sure that the image has this minimum width.
- type: number
- default: 0
The minimum height (px of original image) of the cropping zone. Use this option only when you are sure that the image has this minimum height.
- type: number
- default: Infinity
The maximum width (px of original image) of the cropping zone. Use this option only when you are sure that the image has this maximum width.
- type: number
- default: Infinity
The maximum height (px of original image) of the cropping zone. Use this option only when you are sure that the image has this maximum height.
- type: function
- default: null
An event handler of the "build.cropper" event.
- type: function
- default: null
An event handler of the "built.cropper" event.
- type: function
- default: null
An event handler of the "dragstart.cropper" event.
- type: function
- default: null
An event handler of the "dragmove.cropper" event.
- type: function
- default: null
An event handler of the "dragend.cropper" event.
- Zoom the image.
- Param: a number (positive number for zoom in, negative number for zoom out).
- Usage:
$().cropper("zoom", 0.1)
or$().cropper("zoom", -0.1)
.
- Rotate the image.
- Param: a number (positive number for rotate right, negative number for rotate left).
- Usage:
$().cropper("rotate", 90)
or$().cropper("rotate", -90)
. - Note: Be sure the browser supports rotate (CSS3 transform) before call this method.
- Enable (unfreeze) the cropper.
- Usage:
$().cropper("enable")
.
- Disable (freeze) the cropper.
- Usage:
$().cropper("disable")
.
- Reset the cropping zone to the start state.
- Add a
true
param to reset the cropping zone to the default state. - Usage:
$().cropper("reset")
or$().cropper("reset", true)
.
- Clear the cropping zone.
- Usage:
$().cropper("clear")
.
- Replace the image.
- Param: a url.
- Usage:
$().cropper("replace", "example.jpg")
.
- Destroy the cropper and remove the instance from the image.
- Usage:
$().cropper("destroy")
.
- Get the cropped zone data.
- Usage:
$().cropper("getData")
.
- Reset the cropped zone with new data.
- Param: an object containing "x", "y", "width", "height" and "rotate".
- Use with
$().cropper("setData", {width: 480, height: 270})
.
Tip: If you want to remove the current data, just pass an empty object or null
. For example: $().cropper("setData", {})
or $().cropper("setData", null)
.
- Enable to reset the aspect ratio after built.
- Param: "auto" or a positive number ("auto" for free ratio).
- Usage:
$().cropper("setAspectRatio", 1.618)
.
- Get an object containing image data, contains: "naturalWidth", "naturalHeight", "width", "height", "aspectRatio", "ratio" and "rotate".
- The "aspectRatio" is the value of "naturalWidth / naturalHeight".
- The "ratio" is the value of "width / naturalWidth".
- Usage:
$().cropper("getImageData")
.
- Change the drag mode.
- Params: "crop", "move" and "none".
- Usage:
$().cropper("setDragMode", "crop")
.
Tip: You can toggle the "crop" and "move" mode by double click on the image.
- Get the data url of the cropped zone (Rotation is not supported).
- Param: the same as
canvas.toDataURL
. - Usage:
$().cropper("getDataURL")
or$().cropper("getDataURL", "image/jpeg")
or$().cropper("getDataURL", "image/jpeg", 0.8)
. - Note: Be sure the browser supports canvas before call this method.
This event will be fired when the Cropper starts to build.
This event will be fired when the Cropper has been built.
This event will be fired before the cropping zone start to move.
Related events: "mousedown", "touchstart".
This event will be fired when the cropping zone was moving.
Related events: "mousemove", "touchmove".
This event will be fired after the cropping zone stop to move.
Related events: "mouseup", "mouseleave", "touchend", "touchleave", "touchcancel".
If you have to use other plugin with the same namespace, just call the $.fn.cropper.noConflict
method to revert to it.
<script src="other-plugin.js"></script>
<script src="cropper.js"></script>
<script>
$.fn.cropper.noConflict();
// Code that uses other plugin's "$().cropper" can follow here.
</script>
- Chrome 34+
- Firefox 29+
- Internet Explorer 8+
- Opera 21+
- Safari 5.1+
As a jQuery plugin, you can reference to the jQuery Browser Support.
Released under the MIT license.