Skip to content

Instantly share code, notes, and snippets.

@avh4
Created March 9, 2009 00:34
Show Gist options
  • Save avh4/76024 to your computer and use it in GitHub Desktop.
Save avh4/76024 to your computer and use it in GitHub Desktop.
// Create the variable for the image's URL
URL spaceshipImageURL;
// Get the URL of the image
spaceshipImageURL = getClass().getResource("my_spaceship.png");
// Create the variable for the image
Image spaceshipImage;
// Load the image from the URL
spaceshipImage = ImageIO.read(spaceshipImageURL);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment