首页 > 解决方案 > plupload:上传前验证图像尺寸?

问题描述

我检查了文档但找不到任何东西.. 有没有办法在上传之前验证文件的图像尺寸?我想为最小图像尺寸添加一条规则,并在图像太小时显示错误消息。

标签: jqueryvalidationplupload

解决方案


好的,我可以自己找到它:

把它放在FilesAdded函数里面:

plupload.each(files, function(file, i)
{
    var img = new mOxie.Image;
    img.onload = function () {
        var wi = this.width;
        var he = this.height;
        // you can validate here
    };
    img.load(file.getSource());
});

推荐阅读