Image Loader Applet : Applet « Swing JFC « Java






Image Loader Applet

   
/*

Java Media APIs: Cross-Platform Imaging, Media and Visualization
Alejandro Terrazas
Sams, Published November 2002, 
ISBN 0672320940
*/



import java.applet.Applet;
import java.awt.Graphics;
import java.awt.Image;
import java.awt.image.ImageObserver;
import java.net.MalformedURLException;
import java.net.URL;

import javax.swing.JFrame;

/**
 * ImageLoaderApplet.java -- load and display image specified by imageURL
 */
public class ImageLoaderApplet extends Applet {
  private Image img;

  private String imageURLString = "peppers.png";

  public void init() {
    URL url;
    try {
      // set imageURL here
      url = new URL(imageURLString);
      img = getImage(url);
    } catch (MalformedURLException me) {
      showStatus("Malformed URL: " + me.getMessage());
    }
  }

  /**
   * overloaded method to prevent clearing drawing area
   */
  public void update(Graphics g) {
    paint(g);
  }

  public void paint(Graphics g) {
    g.drawImage(img, 0, 0, this);
  }

  /**
   * Verbose version of ImageConsumer's imageUpdate method
   */
  public boolean imageUpdate(Image img, int flags, int x, int y, int width,
      int height) {
    System.out.print("Flag(s): ");
    if ((flags & ImageObserver.WIDTH) != 0) {
      System.out.print("WIDTH:(" + width + ") ");
    }

    if ((flags & ImageObserver.HEIGHT) != 0) {
      System.out.print("HEIGHT:(" + height + ") ");
    }

    if ((flags & ImageObserver.PROPERTIES) != 0) {
      System.out.print("PROPERTIES ");
    }

    if ((flags & ImageObserver.SOMEBITS) != 0) {
      System.out.print("SOMEBITS(" + x + "," + y + ")->(");
      System.out.print(width + "," + height + ") ");
      repaint();
    }

    if ((flags & ImageObserver.FRAMEBITS) != 0) {
      System.out.print("FRAMEBITS(" + x + "," + y + ")->(");
      System.out.print(width + "," + height + ") ");
      repaint();
    }

    if ((flags & ImageObserver.ALLBITS) != 0) {
      System.out.print("ALLBITS(" + x + "," + y + ")->(");
      System.out.println(width + "," + height + ") ");
      repaint();
      return false;
    }

    if ((flags & ImageObserver.ABORT) != 0) {
      System.out.println("ABORT \n");
      return false;
    }

    if ((flags & ImageObserver.ERROR) != 0) {
      System.out.println("ERROR ");
      return false;
    }

    System.out.println();
    return true;
  }

  public static void main(String[] argv) {
    JFrame frame = new JFrame();
    frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    ImageLoaderApplet a = new ImageLoaderApplet();

    frame.getContentPane().add(a);
    frame.setSize(300, 300);
    a.init();
    a.start();
    frame.setVisible(true);

  }
}

           
         
    
    
  








Related examples in the same category

1.Icon Demo Applet
2.Socket Applet
3.Applet Socket Quote
4.Applet Print
5.Applet System Properties
6.Applet Sound
7.Show Document
8.Applet communication (talk to each other)
9.Get Applets
10.JDBC applet
11.An application and an appletAn application and an applet
12.Applet and Swing ComponentsApplet and Swing Components
13.Icon behavior in JbuttonsIcon behavior in Jbuttons
14.Signed Applet
15.Load resource in Applet
16.Scribble AppletScribble Applet
17.Toggle buttonToggle button
18.Bouncing CircleBouncing Circle
19.Applet Menu Bar Demo
20.Applet clock demoApplet clock demo
21.Applet event testerApplet event tester
22.Applet with parameters
23.First applet
24.AppletViewer - a simple Applet Viewer program
25.A simple loan calculator appletA simple loan calculator applet
26.URLButton -- a Button-like object that jumps to a URL
27.Get list of APPLET tags in one HTML file
28.Demonstration of Applet Methods
29.Demonstrates getParameterInfo() and getAppletInfo()
30.Walking Text Demo
31.Java Applets Can Run CGI's (on some browsers)
32.Demo Choice Applet
33.Demo Applet: Connect to Legacy System
34.ShowDocApplet: try out showDocument()
35.Bookmarks
36.Java Wave Applet Demo
37.Slide Puzzle
38.A class to allow use of the ncsa ISMAP format in java applets
39.Thread Race Applet
40.Applet: Print from an Applet
41.Calling methods of an Applet from JavaScript code
42.Read an applet parameters
43.Change an applet background color
44.Passing Parameters to Java Applet
45.Display message in browser status bar
46.Your own Applet runtime environment
47.This applet is a simple button that plays an audio clip when pushed
48.EventQueue.invokeLater and JApplet
49.An applet component that draws a bar chart
50.This applet displays a greeting from the authors