/*
   GetImage.java
   Burton Rosenberg
   Wed Jul 23 17:40:51 EDT 1997

   And example of the Image object.

*/


import java.applet.* ;
import java.awt.* ;

public class GetImage
extends Applet {

   Image img ;

   public void init() {
      img = getImage( getCodeBase(), getParameter("image") ) ;
   }
 
   public void paint(Graphics gc) {
      System.out.println("Drawing: " + img) ;
      gc.drawImage(img, 0, 0, this ) ;
   }
  
}

