在javascript中使用JCrop获取上传图像的宽度和高度

时间:2015-05-20 03:28:53

标签: javascript

我在javascript中使用Jcrop,我想获得所选图像文件的高度和宽度。任何人都可以帮助我吗?

function fileSelectHandler_assistant() {
    // get selected file
    var oFile = $('#ass-photo-file')[0].files[0]

    // check for image type (jpg and png are allowed)
    var rFilter = /^(image\/jpeg|image\/png)$/i;

    if (!rFilter.test(oFile.type)) {
        $('.error').html('<button id="crop_alert_message_button" type="button" class="close" data-dismiss="alert" aria-label="Close"><span aria-hidden="true">&times;</span></button><i class="fa fa-exclamation"></i> Please select a valid image file (jpg and png are allowed).').show();
        return;
    }
}

0 个答案:

没有答案