首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 软件管理 > 软件架构设计 >

java读取图片长宽有关问题

2012-07-05 
java读取图片长宽问题参考public int getPicWidthOrHeight(String photo, String flag) {try {File _file

java读取图片长宽问题


参考

public int getPicWidthOrHeight(String photo, String flag) {try {File _file = new File(photo);Image src = javax.imageio.ImageIO.read(_file);int wideth = src.getWidth(null);int height = src.getHeight(null);if("W".equalsIgnoreCase(flag)){return wideth;}else{return height;}} catch (Exception e) {// TODO: handle exceptionreturn 0;}}

热点排行