This Example shows you get the image.
Get Image
This Example shows you get the image.Description of the code :
Toolkit.getDefaultToolkit() : Toolkit class is used to bind the different components to specific native toolkit implementations. if we want to implementation Toolkit then firstly set System property named "java.awt.headless" is set to true.getDefaultToolkit is used for get the default toolkit.
Toolkit.getImage() : getImage method return a Image class object and this object get pixel data from the specified URL.
Graphics.drawImage() : drawImage method is used to draw a specified image as is currently available. The image is drawn with its top-left corner at (x, y) coordinate.
Graphics.drawString() : drawImage method is used for draw a specified String. Its top-left corner at (x, y) coordinate.
Frame.setSize () : setSize method is used for set the frame size.
Frame.setVisible() : setVisile method is used for visible true or false.
GetImage.java
|
Output