时间:2010-07-26 15:55:17

标签: java image-processing awt dimensions

3 个答案:

答案 0 :(得分:9)

答案 1 :(得分:2)

答案 2 :(得分:0)

如果检索网址有困难,可以使用以下代码获取宽度和高度。

try {

File f = new File(yourclassname.class.getResource("data/buildings.jpg").getPath());
BufferedImage image = ImageIO.read(f);
int height = image.getHeight();
int width = image.getWidth();
System.out.println("Height : "+ height);
System.out.println("Width : "+ width);
              } 
catch (IOException io) {
    io.printStackTrace();
  }

注意: 数据是/ src中包含图片的文件夹。

信用转到Getting height and width of image in Java