1
我試圖用fengyuanchen的jQuery栽跟頭插件施以裁剪數據輸出的最小尺寸 - https://github.com/fengyuanchen/cropperfengyuanchen jQuery的農作物插件 - 最少的作物驗證
該插件提供了兩個選項minCropBoxWidth
和minCropBoxHeight
但是,這些只是控制實際產量在屏幕上的框。由於裁剪內圖像的大小可以是任意的(在合理範圍內),這無助於確保最終輸出的大小。它直接足以檢索圖像的實際大小(它在數據參數中傳遞給函數crop
)。我遇到的問題是,一旦滿足最小寬度/高度值,裁剪框就會停止縮小尺寸。我得到$(this).cropper(...).disable is not a function
$('.image-preview img').cropper({
aspectRatio:1/1,
strict:true,
background:false,
guides:false,
autoCropArea:1,
rotatable:false,
minCropBoxWidth:20,//using these just to stop box collapsing on itself
minCropBoxHeight:20,
crop:function(data){
//test the new height/width
if(data.height < 120 || data.width < 120){
//try to make it stop
$(this).cropper().disable(); //here be the error
}else{
var json = [
'{"x":' + data.x,
'"y":' + data.y,
'"height":' + data.height,
'"width":' + data.width + '}'
].join();
$('#image-data').val(json);
}
}
非常感謝你的幫助 –
如果這個回答你的問題,請標明爲已解決。 – dekkard
是的,我當然會 –