代码语言
.
CSharp
.
JS
Java
Asp.Net
C
MSSQL
PHP
Css
PLSQL
Python
Shell
EBS
ASP
Perl
ObjC
VB.Net
VBS
MYSQL
GO
Delphi
AS
DB2
Domino
Rails
ActionScript
Scala
代码分类
文件
系统
字符串
数据库
网络相关
图形/GUI
多媒体
算法
游戏
Jquery
Extjs
Android
HTML5
菜单
网页交互
WinForm
控件
企业应用
安全与加密
脚本/批处理
开放平台
其它
【
Java
】
校验图片的大小、尺寸、比例
作者:
睿童
/ 发布于
2019/4/23
/
969
import java.awt.image.BufferedImage; import java.io.File; import java.io.IOException; import javax.imageio.ImageIO; public class CheckImagesFormatUtil { /** * 图片的像素判断 * @param file 文件 * @param imageWidth 图片宽度 * @param imageHeight 图片高度 * @return true:上传图片宽度和高度都小于等于规定最大值 * @throws IOException */ public static boolean checkImageElement(File file, int imageWidth, int imageHeight) throws IOException { Boolean result = false; if (!file.exists()) { return false; } BufferedImage bufferedImage = ImageIO.read(file); int width = bufferedImage.getWidth(); int height = bufferedImage.getHeight(); if (bufferedImage != null && height == imageHeight && width == imageWidth) { result = true; } return result; } /** * 校验图片比例 * @param file 图片 * @param imageWidth 宽 * @param imageHeight 高 * @return true:符合要求 * @throws IOException */ public static boolean checkImageScale(File file, int imageWidth, int imageHeight) throws IOException { Boolean result = false; if (!file.exists()) { return false; } BufferedImage bufferedImage = ImageIO.read(file); int width = bufferedImage.getWidth(); int height = bufferedImage.getHeight(); if (imageHeight != 0 && height != 0) { int scale1 = imageHeight / imageWidth; int scale2 = height / width; if (scale1 == scale2) { result = true; } } return result; } /** * 校验图片的大小 * @param file 文件 * @param imageSize 图片最大值(KB) * @return true:上传图片小于图片的最大值 */ public static boolean checkImageSize(File file, Long imageSize) { if (!file.exists()) { return false; } Long size = file.length() / 1024; // 图片大小 Long maxImageSize = SettingUtils.get().getMaxImageSize(); // 图片最大不能超过5M if (maxImageSize == null) { maxImageSize = 5 * 1024L; } else { maxImageSize = maxImageSize * 1024; } if (size > maxImageSize) { return false; } if (imageSize == null) { return true; } if (size.intValue() <= imageSize) { return true; } return false; } }
试试其它关键字
同语言下
.
List 切割成几份 工具类
.
一行一行读取txt的内容
.
Java PDF转换成图片并输出给前台展示
.
java 多线程框架
.
double类型如果小数点后为零则显示整数否则保留两位小
.
将图片转换为Base64字符串公共类抽取
.
sqlParser 处理SQL(增删改查) 替换schema 用于多租户
.
JAVA 月份中的第几周处理 1-7属于第一周 依次类推 29-
.
java计算两个经纬度之间的距离
.
输入时间参数计算年龄
可能有用的
.
List 切割成几份 工具类
.
一行一行读取txt的内容
.
Java PDF转换成图片并输出给前台展示
.
java 多线程框架
.
double类型如果小数点后为零则显示整数否则保留两位小
.
将图片转换为Base64字符串公共类抽取
.
sqlParser 处理SQL(增删改查) 替换schema 用于多租户
.
JAVA 月份中的第几周处理 1-7属于第一周 依次类推 29-
.
java计算两个经纬度之间的距离
.
输入时间参数计算年龄
睿童
贡献的其它代码
(
10
)
.
校验图片的大小、尺寸、比例
.
根据分区查询数据
.
获取微信用户基本信息
.
截图生成图片并保存到相册
.
回溯法求n皇后问题
.
将一个数进行质因分解(单纯的质因分解)
.
用SQL语句断开某个数据库的所有活动连接
.
App相关辅助类
.
字符拼接
.
常用正则表达式工具RegexpUtils
Copyright © 2004 - 2024 dezai.cn. All Rights Reserved
站长博客
粤ICP备13059550号-3