我正在开发一个Android应用程序。我想显示图像,并想检查该图像的宽度和高度。 我有图片https://dptw5wbct4ot.cloudfront.net/public/album_photo/64/23/01/12142_23eb.jpg?c=6cbc的网址,并希望从此图片网址获取宽度和高度,以便我可以相应地计算图像视图的高度和宽度。
有人在这里有任何想法,请帮助。
非常感谢先进。
答案 0 :(得分:0)
try {
Image image = ImageIO.read(new URL("https://dptw5wbct4ot.cloudfront.net/public/album_photo/64/23/01/12142_23eb.jpg?c=6cbc"));
int width = image.getWidth(null);
int height = image.getHeight(null);
System.out.println(width + "x" + height);
} catch (IOException ex) {
ex.printStackTrace();
}
请注意,我使用的是awt包。