【发布时间】:2021-06-09 10:30:48
【问题描述】:
我检查了文档但找不到任何东西.. 有没有办法在上传之前验证文件的图像尺寸?我想为最小图像尺寸添加规则,并在图像太小时显示错误消息。
【问题讨论】:
标签: jquery validation plupload
我检查了文档但找不到任何东西.. 有没有办法在上传之前验证文件的图像尺寸?我想为最小图像尺寸添加规则,并在图像太小时显示错误消息。
【问题讨论】:
标签: jquery validation plupload
好的,我可以自己找到它:
把这个放在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());
});
【讨论】: