参考
Java代码
http://www.java3z.com/cwbwebhome/article/article5a/571.html
参考
Java代码
http://www.java3z.com/cwbwebhome/article/article5a/571.html
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 |
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 exception return 0; } } |
做自己喜欢做的,跟家人同等重要