Warum gibt das folgende Codestück Höhe: -1 zurück, was bedeutet, dass die Höhe noch nicht bekannt ist. Wie kann man die Höhe des Bildes ermitteln?
try {
// Create a URL for the image's location
URL url = new URL("http://bmw-2006.auto-one.co.uk/wp-content/uploads/bmw-m3-2006-3.jpg");
// Get the image
java.awt.Image image = Toolkit.getDefaultToolkit().createImage(url);
System.out.println("Height: " + image.getHeight(null));
} catch (MalformedURLException e) {
} catch (IOException e) {
}