读书人

java读取图片长宽有关问题

发布时间: 2012-07-05 07:59:18 作者: rapoo

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;}}

读书人网 >软件架构设计

热点推荐