Cropper Versions Save

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

v3.1.0

6 years ago
  • Added 4 new options to getCroppedCanvas method: minWidth, minHeight, maxWidth and maxHeight.
  • Enhanced image scaling: the scaleX and scaleY values should only be 1 or -1 before, but now they can be any numbers.
  • Improved crop box resizing behaviour in the northeast, northwest, southeast and southwest directions.

v3.0.0

6 years ago
  • Improve crop box resizing behaviour.

v3.0.0-rc.3

6 years ago
  • Added two new options (imageSmoothingEnabled and imageSmoothingQuality) to getCroppedCanvas method.

v3.0.0-rc.2

6 years ago
  • Improved performance for large images(#856).
  • Fixed the issue of ArrayBuffer reference error in IE9 (#885).
  • Fixed an issue of canvas box initialization.

v3.0.0-rc.1

7 years ago
  • Use window.jQuery instead of window.$ for browser side usage (#876).
  • Change the main field value from dist/cropper.js (UMD) to dist/cropper.common.js (CommonJS).
  • Added module and browser fields to package.json.

v3.0.0-rc

7 years ago
  • Clear cached pointers correctly to avoid touch zoom problem.
  • Improve the responsive option (only available when the container width/height great than the minContainerWidth/Height)
  • Improve the toggleDragModeOnDblclick option (only available when the dragMode option is set to crop or move)

v3.0.0-beta

7 years ago
  • Fixed the bug of rotate square image lead image shrink.
  • Improved RegExps for DataURL processing.

v3.0.0-alpha.1

7 years ago
  • Use CSS3 2D Transforms instead of left and top for better performance.
  • Set withCredentials attribute when read the image data by XMLHttpRequest.

v3.0.0-alpha

7 years ago
  • Removed build event.

  • Renamed built event to ready.

  • Removed event namespace.

    // Before
    $('img').on('zoom.cropper', handler)
    
    // After
    $('img').on('zoom', handler)
    
  • Ported code to ECMAScript 6.

  • Dropped IE8 support.

  • Improved event handler for Pointer Events (#824).

  • Improved setCropBoxData method.

  • Fixed a bug of auto crop when replace the image.

v2.3.4

7 years ago
  • Fixed a bug of cropping in view mode 1 and 2.
  • Fixed a bug of calling ready event twice when call replace method.
  • Fixed dependencies problem in the package.json file.