Java Code

/** Example showing Images
 *  @author : E.S.Boese
 *  @version: Fall 2008
 */ 
import javax.swing.*;
import java.awt.*;
public class ImageEx2 extends JApplet
{
    public void paint( Graphics g )
    {
        super.paint( g );
        Image  img = getImage( getCodeBase( ), "Lion.jpg" );
        g.drawImage( img, 0,0, 500, 500, 0, 10, 1200, 1200,  this );
    }
}

©2007- by E.S.Boese. All Rights Reserved