jmontoyaa fb8a7802fc Update assets | 8 ani în urmă | |
---|---|---|
.. | ||
dist | 8 ani în urmă | |
src | 8 ani în urmă | |
.bower.json | 8 ani în urmă | |
CHANGELOG.md | 8 ani în urmă | |
LICENSE.md | 8 ani în urmă | |
README.md | 8 ani în urmă | |
bower.json | 8 ani în urmă | |
package.json | 8 ani în urmă |
A simple jQuery image cropping plugin.
dist/
├── cropper.css ( 5 KB)
├── cropper.min.css ( 4 KB)
├── cropper.js (67 KB)
└── cropper.min.js (24 KB)
Four quick start options are available:
git clone https://github.com/fengyuanchen/cropper.git
.npm install cropper
.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>
The CDNJS provides CDN support for Cropper's CSS and JavaScript. You can find the links here.
<link href="https://cdn.rawgit.com/fengyuanchen/cropper/v1.0.0/dist/cropper.min.css" rel="stylesheet">
<script src="https://cdn.rawgit.com/fengyuanchen/cropper/v1.0.0/dist/cropper.min.js"></script>
Initialize with $.fn.cropper
method.
<!-- Wrap the image or canvas element with a block element -->
<div class="container">
<img src="picture.jpg">
</div>
$('.container > img').cropper({
aspectRatio: 16 / 9,
crop: function(e) {
// Output the result data for cropping image.
console.log(e.x);
console.log(e.y);
console.log(e.width);
console.log(e.height);
console.log(e.rotate);
console.log(e.scaleX);
console.log(e.scaleY);
}
});
See the FAQ documentation.
The size of the cropper inherits from the size of the image's parent element (wrapper), so be sure to wrap the image with a visible block element.
The outputted cropped data bases on the original image size, so you can use them to crop the image directly.
If you try to start cropper on a cross-origin image, please make sure that your browser supports HTML5 CORS settings attributes, and your image server supports the Access-Control-Allow-Origin
option.
About getCroppedCanvas
method: The canvas.drawImage
API in some Mac OS / iOS browsers will rotate an image with EXIF Orientation automatically, so the output cropped canvas may be incorrect. To fix this, you may upload the cropped data and crop the image in the server-side, see the example: Crop Avatar. Or you may handle the EXIF Orientation in server first before to use cropper.
Known iOS resource limits: As iOS devices limit memory, the browser may crash when you are cropping a large image (iPhone camera resolution). To avoid this, you may resize the image first (below 1024px) before start a cropper.
You may set cropper options with $().cropper(options)
.
If you want to change the global default options, You may use $.fn.cropper.setDefaults(options)
.
Number
NaN
Set the aspect ratio of the crop box. By default, the crop box is free ratio.
Object
null
The previous cropped data if you had stored, will be passed to setData
method automatically.
String
(jQuery selector)''
Add extra elements (containers) for previewing.
Notes:
aspectRatio
option, be sure to set the preview container with the same aspect ratio.overflow:hidden
to the preview container.Boolean
true
In strict mode, the crop box cannot be outside of the canvas (image wrapper).
Boolean
true
Rebuild the cropper when resize the window.
Boolean
true
By default, the plugin will check the image origin, and if it is a cross-origin image, a crossOrigin
attribute will be added to the image element and a timestamp will be added to the image url to reload the image for "getCroppedCanvas".
By adding crossOrigin
attribute to image will stop adding timestamp to image url, and stop reload of image.
Boolean
true
Show the black modal above the image and under the crop box.
Boolean
true
Show the dashed lines above the crop box.
Boolean
true
Show the center indicator above the crop box.
Boolean
true
Show the white modal above the crop box (highlight the crop box).
Boolean
true
Show the grid background of the container.
Boolean
true
Enable to crop the image automatically when initialize.
Number
0.8
(80% of the image)A number between 0 and 1. Define the automatic cropping area size (percentage).
Boolean
true
Enable to remove the current crop box and create a new one by dragging over the image.
Boolean
true
Enable to move the image.
Boolean
true
Enable to rotate the image.
Boolean
true
Enable to scale the image.
Boolean
true
Enable to zoom the image.
Boolean
true
Enable to zoom the image by wheeling mouse.
Number
0.1
Define zoom ratio when zoom the image by wheeling mouse.
Boolean
true
Enable to zoom the image by dragging touch.
Boolean
true
Enable to move the crop box.
Boolean
true
Enable to resize the crop box.
Boolean
true
Enable to toggle drag mode between "crop" and "move" when double click on the cropper.
Number
200
The minimum width of the container.
Number
100
The minimum height of the container.
Number
0
The minimum width of the canvas (image wrapper).
Number
0
The minimum height of the canvas (image wrapper).
Number
0
The minimum width of the crop box.
Number
0
The minimum height of the crop box.
Function
null
A shortcut of the "build.cropper" event.
Function
null
A shortcut of the "built.cropper" event.
Function
null
A shortcut of the "cropstart.cropper" event.
Function
null
A shortcut of the "cropmove.cropper" event.
Function
null
A shortcut of the "cropend.cropper" event.
Function
null
A shortcut of the "crop.cropper" event.
Function
null
A shortcut of the "zoom.cropper" event.
As there is an asynchronous process when load the image, you should call most of the methods after built, except "setAspectRatio", "replace" and "destroy".
$().cropper({
built: function () {
$().cropper('method', argument1, , argument2, ..., argumentN);
}
});
Show the crop box manually.
$().cropper({
autoCrop: false,
built: function () {
// Do something here
// ...
// And then
$(this).cropper('crop');
}
});
Reset the image and crop box to their initial states.
Clear the crop box.
String
Replace the image's src and rebuild the cropper.
Enable (unfreeze) the cropper.
Disable (freeze) the cropper.
Destroy the cropper and remove the instance from the image.
offsetX:
Number
0
offsetY (optional):
Number
offsetX
.Move the canvas (image wrapper).
$().cropper('move', 1);
$().cropper('move', 1, 0);
$().cropper('move', 0, -1);
Number
Zoom the canvas (image wrapper).
$().cropper('zoom', 0.1);
$().cropper('zoom', -0.1);
Number
Rotate the canvas (image wrapper).
Requires CSS3 2D Transforms support (IE 9+).
$().cropper('rotate', 90);
$().cropper('rotate', -90);
scaleX:
Number
1
1
it does nothing.scaleY (optional):
Number
scaleX
.Scale the image.
Requires CSS3 2D Transforms support (IE 9+).
$().cropper('scale', -1); // Flip both horizontal and vertical
$().cropper('scale', -1, 1); // Flip horizontal
$().cropper('scale', 1, -1); // Flip vertical
rounded (optional):
Boolean
false
true
to get rounded values.(return value):
Object
x
: the offset left of the cropped areay
: the offset top of the cropped areawidth
: the width of the cropped areaheight
: the height of the cropped arearotate
: the rotated degrees of the imagescaleX
: the scaling factor to apply on the abscissa of the imagescaleY
: the scaling factor to apply on the ordinate of the imageOutput the cropped area position and size data (base on the original image).
Object
getData
method.Change the cropped area position and size with new data (base on the original image).
Note: Only available in strict mode.
Object
width
: the current width of the containerheight
: the current height of the containerOutput the container size data.
Object
left
: the offset left of the imagetop
: the offset top of the imagewidth
: the width of the imageheight
: the height of the imagenaturalWidth
: the natural width of the imagenaturalHeight
: the natural height of the imageaspectRatio
: the aspect ratio of the imagerotate
: the rotated degrees of the image if rotatedscaleX
: the scaling factor to apply on the abscissa of the image if scaledscaleY
: the scaling factor to apply on the ordinate of the image if scaledOutput the image position, size and other related data.
Object
left
: the offset left of the canvastop
: the offset top of the canvaswidth
: the width of the canvasheight
: the height of the canvasOutput the canvas (image wrapper) position and size data.
Object
left
: the new offset left of the canvastop
: the new offset top of the canvaswidth
: the new width of the canvasheight
: the new height of the canvasChange the canvas (image wrapper) position and size with new data.
Object
left
: the offset left of the crop boxtop
: the offset top of the crop boxwidth
: the width of the crop boxheight
: the height of the crop boxOutput the crop box position and size data.
Object
left
: the new offset left of the crop boxtop
: the new offset top of the crop boxwidth
: the new width of the crop boxheight
: the new height of the crop boxChange the crop box position and size with new data.
options (optional):
Object
width
: the destination width of the output canvasheight
: the destination height of the output canvasfillColor
: a color to fill any alpha values in the output canvas(return value):
HTMLCanvasElement
Browser support:
Get a canvas drawn the cropped image.
After then, you can display the canvas as an image directly, or use canvas.toDataURL to get a Data URL, or use canvas.toBlob to get a blob and upload it to server with FormData if the browser supports these APIs.
$().cropper('getCroppedCanvas');
$().cropper('getCroppedCanvas', {
width: 160,
height: 90
});
// Upload cropped image to server
$().cropper('getCroppedCanvas').toBlob(function (blob) {
var formData = new FormData();
formData.append('croppedImage', blob);
$.ajax('/path/to/upload', {
method: "POST",
data: formData,
processData: false,
contentType: false,
success: function () {
console.log('Upload success');
},
error: function () {
console.log('Upload error');
}
});
});
Number
Change the aspect ratio of the crop box.
String
'none'
'none'
, 'crop'
, 'move'
Change the drag mode.
Tips: You can toggle the "crop" and "move" mode by double click on the cropper.
This event fires when a cropper instance starts to load an image.
This event fires when a cropper instance has built completely.
event.originalEvent:
Event
mousedown
, touchstart
and pointerdown
event.action:
String
'crop'
: create a new crop box'move'
: move the canvas (image wrapper)'zoom'
: zoom in / out the canvas (image wrapper) by touch.'e'
: resize the east side of the crop box'w'
: resize the west side of the crop box's'
: resize the south side of the crop box'n'
: resize the north side of the crop box'se'
: resize the southeast side of the crop box'sw'
: resize the southwest side of the crop box'ne'
: resize the northeast side of the crop box'nw'
: resize the northwest side of the crop box'all'
: move the crop box (all directions)This event fires when the canvas (image wrapper) or the crop box starts to change.
$().on('cropstart.cropper', function (e) {
console.log(e.type); // cropstart
console.log(e.namespace); // cropper
console.log(e.action); // ...
console.log(e.originalEvent.pageX);
// Prevent to start cropping, moving, etc if necessary
if (e.action === 'crop') {
e.preventDefault();
}
});
event.originalEvent:
Event
mousemove
, touchmove
and pointermove
.event.action: the same as "cropstart.cropper".
This event fires when the canvas (image wrapper) or the crop box is changing.
event.originalEvent:
Event
mouseup
, touchend
, touchcancel
, pointerup
and pointercancel
.event.action: the same as "cropstart.cropper".
This event fires when the canvas (image wrapper) or the crop box stops to change.
About these properties, see the
getData
method.
This event fires when the canvas (image wrapper) or the crop box changed.
event.originalEvent:
Event
wheel
, touchmove
.event.ratio:
Number
ratio > 0
means zoom in, ratio < 0
means zoom out)This event fires when a cropper instance starts to zoom in or zoom out its canvas (image wrapper).
$().on('zoom.cropper', function (e) {
var maxRatio = 10;
var imageData = $(this).cropper('getImageData');
var currentRatio = imageData.width / imageData.naturalWidth;
// Zoom in
if (e.ratio > 0 && currentRatio > maxRatio) {
// Prevent zoom in
e.preventDefault();
// Fit the max zoom ratio
$(this).cropper('setCanvasData', {
width: imageData.naturalWidth * maxRatio
});
}
// Zoom out
// ...
});
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>
As a jQuery plugin, you also need to see the jQuery Browser Support.
Please read through our contributing guidelines.
Maintained under the Semantic Versioning guidelines.