hey guys, new to gui java. i found some code and have no idea what it does could somebody explain it to me please and help me understand how it could be changed it something more readable

try {
			
			
			
	URL url = this.getClass().getClassLoader().getResource(ref);
		
                        
			sourceImage = ImageIO.read(url);
		} catch (IOException e) {
			fail("Failed to load: "+ref);
		}
		
		
		GraphicsConfiguration gc = GraphicsEnvironment.getLocalGraphicsEnvironment().getDefaultScreenDevice().getDefaultConfiguration();
		Image image = gc.createCompatibleImage(sourceImage.getWidth(),sourceImage.getHeight(),Transparency.BITMASK);

i would be very great full if you could tell me whats going on in this code and how it could be simplified
thanks

doesn't do a whole lot... Just loads an image and transforms it into something the computer can display.
As you would have figured out easily enough had you bothered to read the documentation for the classes involved.

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.