BufferedImage bi = ImageIO.read(upload);
if (bi.getHeight() > 120) {
form.setResult(6);
return SUCCESS;
}
if (bi.getWidth() > 120) {
form.setResult(6);
return SUCCESS;
}
if (bi.getHeight() > 120) {
form.setResult(6);
return SUCCESS;
}
if (bi.getWidth() > 120) {
form.setResult(6);
return SUCCESS;
}
图片尺寸验证
本文介绍了一段用于检查上传图片尺寸是否超过120像素的代码片段。如果图片的高度或宽度大于120像素,则返回特定结果。
1979

被折叠的 条评论
为什么被折叠?



