fengyuanchen / cropper

⚠️ [Deprecated] No longer maintained, please use https://github.com/fengyuanchen/jquery-cropper
MIT License
7.75k stars 1.74k forks source link

Cropbox size not able to set #1071

Closed sameermvaidya closed 4 years ago

sameermvaidya commented 4 years ago

Hi,

I am trying to set the cropbox size but it is failing. I am using the below code.

$toCrop.cropper({ viewMode: 1, dragMode: 'move', autoCropArea: 0, restore: false, guides: false, highlight: false, cropBoxMovable: false, cropBoxResizable: false, built: function () { //$toCrop.cropper("setCropBoxData", { width: "100", height: "50" }); $toCrop.cropper('setCropBoxData', 0, 0, 100, 50); } });

Please suggest.