我正在使用cropper.js v0.8.0
我使用下面的jQuery代码裁剪图像。
function readURL(input) {
if (input.files && input.files[0]) {
var reader = new FileReader();
reader.onload = function (e) {
$('#img_view').attr('src', e.target.result)
};
reader.readAsDataURL(input.files[0]);
setTimeout(initCropper, 1000);
}
function initCropper(){
// console.log("Came here")
var image = document.getElementById('img_view');
var cropper = new Cropper(image, {
aspectRatio: 1/1,
cropBoxResizable: false,
crop: function(e) {
// console.log(e.detail.x);
// console.log(e.detail.y);
}
});
// On crop button clicked
document.getElementById('crop_button').addEventListener('click', function(){
var imgurl = cropper.getCroppedCanvas().toDataURL();
var img = document.createElement("img");
img.src = imgurl;
document.getElementById("cropped_result").appendChild(img);
/* ---------------- SEND IMAGE TO THE SERVER-------------------------
cropper.getCroppedCanvas().toBlob(function (blob) {
var formData = new FormData();
formData.append('croppedImage', blob);
// Use `jQuery.ajax` method
$.ajax('/path/to/upload', {
method: "POST",
data: formData,
processData: false,
contentType: false,
success: function () {
console.log('Upload success');
},
error: function () {
console.log('Upload error');
}
});
});
*/
})
}
每当出现裁切区域来裁切图像时,通过Defualt进行默认设置(按纵横比)。我希望它以特定的高度和宽度进行裁剪,例如420x230。我尝试过
maxCropBoxWidth: 420,
maxCropBoxHeight: 230,
和
minCropBoxWidth: 420,
minCropBoxHeight: 230,
以下是我的HTML代码:
<div class="custom-file">
<input type="file" id="post_featured_image" name="post_featured_image" class="custom-file-input" onchange="readURL(this);" />
<div class="image_container">
<img id="img_view" class="fixed-size-crop-box" src="#" alt="This is How the Featured Image will Look Exactly..">
</div>
<div id="cropped_result"></div>
<button id="crop_button">Crop</button>
<label class="custom-file-label" for="post_featured_image">Choose file</label>
</div>
但仍然没有成功。代码中是否有任何错误,或者由于版本较低而导致无法正常工作,任何人都可以帮助我解决更新的版本。这将非常有帮助。自最近10个小时以来,我一直坚持下去。
答案 0 :(得分:2)
也许可以解决您的问题。
var cropper = new Cropper(image, {
dragMode: 'move',
autoCropArea: 0.65,
restore: false,
guides: false,
center: false,
highlight: false,
cropBoxMovable: false,
cropBoxResizable: false,
toggleDragModeOnDblclick: false,
data:{ //define cropbox size
width: 240,
height: 90,
},
});