工作小提琴: http://jsfiddle.net/nbv8mb4a/
尝试小提琴: http://jsfiddle.net/3m0zekyj/
我的工作小提琴允许用户在上传之前看到图像。我接下来要做的是获取图像的高度和宽度以使其至少一侧为160px,否则将为160px或更大,图像将缩放。
不允许低于160高度或宽度的图像,但是我会卡在我的轨道上以获得宽度和高度。到目前为止,我的工作代码如下;
var wrapper = $('<div/>').css({height:0,width:0,'overflow':'hidden'});
var fileInput = $(':file').wrap(wrapper);
fileInput.change(function(){
readURL(this);
})
$('#file').click(function(){
fileInput.click();
}).show();
function readURL(input) {
$('#blah').hide();
if (input.files && input.files[0]) {
var goUpload = true;
var uploadFile = input.files[0];
if (!(/\.(gif|jpg|jpeg|tiff|png)$/i).test(uploadFile.name)) {
$('#file').effect( "shake" );
$('#file').text('You must select an image file only');
setTimeout(function() { $('#file').text('Choose file');},5000);
goUpload = false;
}
if (uploadFile.size > 2000000) { // 2mb
//common.notifyError('Please upload a smaller image, max size is 2 MB');
$('#file').text('Please upload a smaller image, max size is 2 MB');
setTimeout(function() { $('#file').text('Choose file');},5000);
goUpload = false;
}
if (goUpload) {
$('#file').text("Uploading "+uploadFile.name);
var reader = new FileReader();
reader.onload = function (e) {
$('#blah').attr('src', e.target.result).show();
$('#file').text(uploadFile.name);
}
reader.readAsDataURL(uploadFile);
}
}
}
答案 0 :(得分:1)
在您尝试过的小提琴中,您正在致电:
width = this.width();
height = this.height();
,未定义。
首先分配 src 属性,然后读取宽度和高度,如下所示:
$('#blah').attr('src', e.target.result).show();
width = $('#blah').width();
height = $('#blah').height();