为什么minImageWidth,minImageHeight没有工作krajee fileInput插件?

时间:2018-01-23 18:32:35

标签: javascript

我正在使用Krajee文件输入插件http://plugins.krajee.com/file-image-dimensions-demo#min-image-dimensions

我想设置最小宽度和最小高度,但它在控制台中没有错误,输入文件中没有错误消息。

但是最大宽度和最大高度正常工作,它在输入文件中显示如下所示的错误。

Width of image file "600x380.jpg" cannot exceed 100 px.
Height of image file "600x380.jpg" cannot exceed 100 px.

这是我的代码

<input id="diePhotoxyz" type="file" class="form-control file-loading" style="margin-bottom:0px" name="photo">


    $('#diePhotoxyz').fileinput({
        showUpload: false,
        showCaption: false,
        showPreview: true,
        minImageHeight: 50,
        minImageWidth: 50,
        maxImageHeight: 100,
        maxImageWidth: 100
    });

我的代码出了什么问题?

1 个答案:

答案 0 :(得分:0)

试试这个。

$('#diePhotoxyz').fileinput({
    showUpload: false,
    showPreview: true,
    minImageHeight: 50,
    minImageWidth: 50,
    maxImageHeight: 100,
    maxImageWidth: 100
});