Cropper Versions Save

⚠️ [Deprecated] No longer maintained, please use https://github.com/fengyuanchen/jquery-cropper

v4.1.0

4 years ago
  • Upgrade the built-in Cropper.js to v1.5.6.

v4.0.0

6 years ago
  • Upgrade the built-in Cropper.js to v1.3.4.

v4.0.0-beta

6 years ago
  • Upgrade the built-in Cropper.js to v1.3.2.

v4.0.0-alpha

6 years ago
  • The core code of Cropper is replaced with Cropper.js.
  • Migration from Cropper 3.x:
    • Before:
      $().cropper({
        crop(event) {
          console.log(
            event.x,
            event.y,
            event.width,
            event.height,
            event.rotate,
            event.scaleX,
            event.scaleY,
          );
        },
      });
      
    • After:
      $().cropper({
        crop(event) {
          console.log(
            event.detail.x,
            event.detail.y,
            event.detail.width,
            event.detail.height,
            event.detail.rotate,
            event.detail.scaleX,
            event.detail.scaleY,
          );
        },
      });
      

v3.1.6

6 years ago
  • Fixed a bug of incorrect behavior of viewMode: 2.

v3.1.5

6 years ago
  • Fixed a bug of getCroppedCanvas method when provide maxWidth or maxHeight options (#953).

v3.1.4

6 years ago
  • Fixed a bug of rotation (#938).

v3.1.3

6 years ago
  • Fixed a bug of render when disable one of rotatable and scalable options.

v3.1.2

6 years ago
  • Normalize related decimal numbers when crop an image with canvas (#918).
  • Ignore unnecessary files when publish to NPM (#928).

v3.1.1

6 years ago
  • Supports to load in node environment.