Buffered Animation Demo : Animation « 2D Graphics GUI « Java

Java
1. 2D Graphics GUI
2. 3D
3. Advanced Graphics
4. Ant
5. Apache Common
6. Chart
7. Class
8. Collections Data Structure
9. Data Type
10. Database SQL JDBC
11. Design Pattern
12. Development Class
13. Email
14. Event
15. File Input Output
16. Game
17. Generics
18. Hibernate
19. I18N
20. J2EE
21. J2ME
22. JDK 6
23. JSP
24. JSTL
25. Language Basics
26. Network Protocol
27. PDF RTF
28. Reflection
29. Regular Expressions
30. Scripting
31. Security
32. Servlets
33. Spring
34. Swing Components
35. Swing JFC
36. SWT JFace Eclipse
37. Threads
38. Tiny Application
39. Velocity
40. Web Services SOA
41. XML
Java Tutorial
Java Source Code / Java Documentation
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
C# / C Sharp
C# / CSharp Tutorial
ASP.Net
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java » 2D Graphics GUI » AnimationScreenshots 
Buffered Animation Demo
Buffered Animation Demo


import java.awt.Color;
import java.awt.Dimension;
import java.awt.Graphics;
import java.awt.Image;
import java.awt.Insets;
import java.awt.image.BufferedImage;
import java.util.Timer;
import java.util.TimerTask;

import javax.swing.JFrame;

public class BufferedAnimate extends JFrame {

  private static int DELAY = 100;

  Image buffer;

  Dimension oldSize;

  Insets insets;

  Color colors[] Color.RED, Color.ORANGE, Color.YELLOW, Color.GREEN,
      Color.BLUE, Color.MAGENTA };

  public void paint(Graphics g) {
    if ((oldSize == null|| (oldSize != getSize())) {
      oldSize = getSize();
      buffer = new BufferedImage(getWidth(), getHeight(),
          BufferedImage.TYPE_INT_RGB);
    }
    if (insets == null) {
      insets = getInsets();
    }
    // Calculate each time in case of resize
    int x = insets.left;
    int y = insets.top;
    int width = getWidth() - insets.left - insets.right;
    int height = getHeight() - insets.top - insets.bottom;
    int start = 0;
    int steps = colors.length;
    int stepSize = 360 / steps;
    synchronized (colors) {
      Graphics bufferG = buffer.getGraphics();
      bufferG.setColor(Color.WHITE);
      bufferG.fillRect(x, y, width, height);
      for (int i = 0; i < steps; i++) {
        bufferG.setColor(colors[i]);
        bufferG.fillArc(x, y, width, height, start, stepSize);
        start += stepSize;
      }
    }
    g.drawImage(buffer, 00this);
  }

  public void go() {
    TimerTask task = new TimerTask() {
      public void run() {
        Color c = colors[0];
        synchronized (colors) {
          System.arraycopy(colors, 1, colors, 0, colors.length - 1);
          colors[colors.length - 1= c;
        }
        repaint();
      }
    };
    Timer timer = new Timer();
    timer.schedule(task, 0, DELAY);
  }

  public static void main(String args[]) {
    BufferedAnimate f = new BufferedAnimate();
    f.setSize(200200);
    f.setTitle("Buffered");
    f.show();
    f.go();
  }
}


           
       
Related examples in the same category
1. Is Event Dispatcher ThreadIs Event Dispatcher Thread
2. Hypnosis animationHypnosis animation
3. Noise ImageNoise Image
4. How to create Animation: Paint and threadHow to create Animation: Paint and thread
5. How to create animationHow to create animation
6. Bounce ThreadBounce Thread
7. Animation: bounce
8. Image BouncerImage Bouncer
9. Text animationText animation
10. Bouncing CircleBouncing Circle
11. Hypnosis SpiralHypnosis Spiral
12. Animator DemoAnimator Demo
13. Towers of Hanoi
w_ww_._j__a_v_a2s___.___c_om___ | Contact Us
Copyright 2003 - 08 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.