我实现了一个jQuery代码片段来处理图像上传,并希望根据特定的图像尺寸执行验证。
我现在的代码包含了上传图片的功能,但是我需要验证上传的图片是否宽1000像素,高1250像素。
此外,如果尺寸不匹配,我想删除无效图像的预览。
下面是我目前使用的jQuery代码:
$("#thumbnail").spartanMultiImagePicker({
fieldName: 'image',
maxCount: 1,
rowHeight: 'auto',
groupClassName: 'col-12',
maxFileSize: '',
placeholderImage: {
image: '{{ asset('assets/back-end/img/400x400/img2.jpg') }}',
width: '100%',
},
dropFileLabel: "Drop Here",
onAddRow: function(index, file) {
},
onRenderedPreview: function(index) {
},
onRemoveRow: function(index) {
},
onExtensionErr: function(index, file) {
toastr.error(
'{{ \App\CPU\translate('Please only input png or jpg type file') }}', {
CloseButton: true,
ProgressBar: true
});
},
onSizeErr: function(index, file) {
toastr.error('{{ \App\CPU\translate('File size too big') }}', {
CloseButton: true,
ProgressBar: true
});
}
});
字符串
1条答案
按热度按时间huus2vyu1#
您可以通过这种方式检查尺寸。
字符串