我正在尝试使用Jcrop裁剪上传的图像。我的目的是在用户上传时裁剪图像。我不需要将用户上传的图像存储在服务器中。但是,我应该只存储通过Jcrop选择的图像用户部分到服务器。以下是问题的fiddle链接
我使用了以下代码:
HTML:
<form id="form1">
<input type='file' id="imgInp" />
<img id="blah" class="crop" src="#" alt="your image" />
<input type="hidden" id="x" name="x" />
<input type="hidden" id="y" name="y" />
<input type="hidden" id="w" name="w" />
<input type="hidden" id="h" name="h" />
</form>
CSS:
<style>
#blah {
background-color: #FFF;
width: 500px;
height: 330px;
font-size: 24px;
display: block;
}
</style>
JS:
function readURL(input) {
if (input.files && input.files[0]) {
var reader = new FileReader();
reader.onload = function (e) {
$('#blah').attr('src', e.target.result);
}
reader.readAsDataURL(input.files[0]);
}
}
$("#imgInp").change(function(){
console.log(this);
readURL(this);
$(function(){
$('.crop').Jcrop({
onSelect: updateCoords,
bgOpacity: .4,
setSelect: [ 100, 100, 50, 50 ],
aspectRatio: 16 / 9
});
});
});
function updateCoords(c)
{
console.log(c);
$('#x').val(c.x);
$('#y').val(c.y);
$('#w').val(c.w);
$('#h').val(c.h);
};
我尝试在上传图片后,将相同的图像用于JCrop,这样我就可以获得坐标值来生成图像的其余部分。我现在的问题是:上传后,我在图像点而不是上传的图像中获得黑色。任何人都可以查看它并找到代码的错误吗?
答案 0 :(得分:7)
图像显示为黑色的问题正在发生,因为您在图像实际加载之前调用了jCrop。你可以在reader.onload调用之后调用jCrop,这样它就会在图像加载后运行。见:
reader.onload = function (e) {
$('#blah').attr('src', e.target.result);
$('.crop').Jcrop({
onSelect: updateCoords,
bgOpacity: .4,
setSelect: [ 100, 100, 50, 50 ],
aspectRatio: 16 / 9
});
}
这是更新的fiddle
答案 1 :(得分:1)
我认为Jcrop已经很长时间没有更新,并且它不支持IE 11.缺点是它本身并没有裁剪图像。它只为您提供坐标,然后将原始图像上传到Web服务器,然后在服务器上裁剪。
看一下答案here。它为您提供了使用Jcrop&amp; amp; amp;将插件上传到裁剪,调整大小,在浏览器中缩放并将裁剪的图像上传到服务器。此插件使用HTML 5 Canvas元素裁剪图像,它支持IE 11。