我正在使用Jcrop调整宽高比为1的图像的大小。在大多数情况下,效果很好,但是在某些情况下,当图像变宽时,我无法选择全部图像。我可以采取什么措施来选择图像的全部内容?
我的代码是:
function readURL(input) {
if (input.files && input.files[0]) {
var reader = new FileReader();
reader.onload = function(e) {
$('#jimage').attr('src', e.target.result);
}
reader.readAsDataURL(input.files[0]);
$('#jimage').Jcrop({
onSelect: showCoords,
aspectRatio: 1,
bgColor: '#2e7cce',
bgOpacity: .4,
boxWidth: 500,
});
}}
我尝试添加一些我在网络上看到的缩放实现,但是缩放会影响选择区域,结果是相同的。我需要能够选择图像的所有内容。
答案 0 :(得分:1)
设置aspectRatio: 1
意味着您始终希望选择正方形,如果图像是矩形(高度大于宽度,反之亦然),则将无法选择整个图像。
一种解决方案是删除aspectRatio: 1
,这将允许自由裁剪。
另一种解决方案是在将图像传递到Jcrop之前将其缩放为正方形。
reader.onload = function(e) {
$('#jimage').attr('src', e.target.result);
width = $('#jimage').width();
height = $('#jimage').height();
if(height > width )
$('#jimage').width(width * (height/width));
else if(width > height)
$('#jimage').height(height * (width/height));
}