Composition technique in this animation. : 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. EJB3
14. Email
15. Event
16. File Input Output
17. Game
18. Generics
19. GWT
20. Hibernate
21. I18N
22. J2EE
23. J2ME
24. JDK 6
25. JNDI LDAP
26. JPA
27. JSP
28. JSTL
29. Language Basics
30. Network Protocol
31. PDF RTF
32. Reflection
33. Regular Expressions
34. Scripting
35. Security
36. Servlets
37. Spring
38. Swing Components
39. Swing JFC
40. SWT JFace Eclipse
41. Threads
42. Tiny Application
43. Velocity
44. Web Services SOA
45. XML
Java Tutorial
Java Source Code / Java Documentation
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
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
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java » 2D Graphics GUI » AnimationScreenshots 
Composition technique in this animation.
    

import java.awt.AlphaComposite;
import java.awt.Graphics;
import java.awt.Graphics2D;
import java.awt.Image;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.awt.image.BufferedImage;

import javax.swing.ImageIcon;
import javax.swing.JFrame;
import javax.swing.JPanel;
import javax.swing.Timer;

public class ImageComposite extends JPanel implements ActionListener {
  Image a = new ImageIcon(this.getClass().getResource("a.png")).getImage();
  Image b = new ImageIcon(this.getClass().getResource("b.png")).getImage();
  Timer timer = new Timer(800this);
  float alpha = 1f;

  public ImageComposite() {
    timer.start();
  }

  public void paint(Graphics g) {
    super.paint(g);
    Graphics2D g2d = (Graphics2Dg;

    BufferedImage buffImg = new BufferedImage(200100, BufferedImage.TYPE_INT_ARGB);
    Graphics2D gbi = buffImg.createGraphics();

    AlphaComposite ac = AlphaComposite.getInstance(AlphaComposite.SRC_OVER, alpha);

    gbi.drawImage(a, 4030null);
    gbi.setComposite(ac);
    gbi.drawImage(b, 00null);

    g2d.drawImage(buffImg, 2020null);
  }
  public void actionPerformed(ActionEvent e) {
    alpha -= 0.1;
    if (alpha <= 0) {
      alpha = 0;
      timer.stop();
    }
    repaint();
  }

  public static void main(String[] args) {
    JFrame frame = new JFrame();
    frame.add(new ImageComposite());
    frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    frame.setSize(300210);
    frame.setVisible(true);
  }

}

   
    
    
    
  
Related examples in the same category
1. Is Event Dispatcher ThreadIs Event Dispatcher Thread
2. Timer based animation
3. A rotating and scaling rectangle.
4. Fade out an image: image gradually get more transparent until it is completely invisible.
5. Font size animation
6. Hypnosis animationHypnosis animation
7. Noise ImageNoise Image
8. How to create Animation: Paint and threadHow to create Animation: Paint and thread
9. How to create animationHow to create animation
10. Bounce ThreadBounce Thread
11. Animation: bounce
12. Image BouncerImage Bouncer
13. Text animationText animation
14. Buffered Animation DemoBuffered Animation Demo
15. Bouncing CircleBouncing Circle
16. Hypnosis SpiralHypnosis Spiral
17. Animator DemoAnimator Demo
18. Towers of Hanoi
19. Make your own animation from a series of images
20. Animated Button
21. Animated Message Panel
22. Animated PasswordField
23. Animated TextField
24. A simple spring simulation in one dimension
ww_w_._j___a__v_a___2__s___.c___o___m_ | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.