我查看了https://github.com/fengyuanchen/cropperjs提供的文档,但无法在那里找到任何信息。我也尝试使用像imgAreaSelect这样的库,它提供x1,y1,x2,y2格式的坐标信息。
var image = document.getElementById('originaImage');
var cropper = new Cropper(image, {
aspectRatio: 16 / 9,
viewMode: 3,
zoomable: false,
minCropBoxWidth: 300,
minCropBoxHeight: 300,
preview: '.previewimg',
movable: false,
zoomable: false,
rotatable: false,
scalable: true,
cropend: function (e) {
/* body... */
},
crop: function(e) {
console.log(e.detail.x);
console.log(e.detail.y);
console.log(e.detail.width);
console.log(e.detail.height);
console.log(e.detail.rotate);
console.log(e.detail.scaleX);
console.log(e.detail.scaleY);
}
});
$('#originaImage').cropper('getData', true) // only has x and y coordinates.
答案 0 :(得分:0)
与imgAreaSelect和JCrop一样,我们可以通过以下方式在CropperJs中实现相同的目标:
X2= (Math.round(data.x) + Math.round(data.width));
Y2= (Math.round(data.y) + Math.round(data.height));
如果您不想使用Math.round()
明确完善,那么您可以使用getData([rounded])
getData([rounded])
- 隐含地舍入值。