How To Implement Graphics In Java

Rate this article
0 out of 5
In this tutorial we will show you how to implement graphics in java. After viewing the video tutorial, download the source code and try to modify the code so as to get a feel of what is learned in this video tutorial.


Source Code
paintTest.java
import java.awt.*;
import javax.swing.*;
import java.awt.event.*;
public class paintTest extends JFrame 
{
   public paintTest() 
   {
      super( "paintTest Demo" );
      setSize( 400, 130 );
      show();
   }

   public void paint( Graphics g ) 
   {
      g.setColor( new Color( 255, 255, 0 ) );
      g.drawString( "JAVA AND GRAPHICS CONTEXT EXAMPLE             " + g.getColor(), 100,100 );
   }

   public static void main( String args[] ) 
  {
      paintTest app = new paintTest();

        app.addWindowListener(
         new WindowAdapter()
           {
            public void windowClosing( WindowEvent e )
            {
               System.exit( 0 );
            }
         }
      );
   }
}


Source Code

Joined Date :04-Feb-2013
Articles
Posted
27
Messages
Posted
0


   
Messages
Posted:
Post Your Comments
Name (Max 50 Chars)
Comments

TekTipsDownload
GateExam
Academic Projects
TekTipsExperts



 
Site optimized for IE7, 1280 X 768 and above. Copyright © 2010 - 2018 KTS InfoTech
Site Developed Using KTS WebCloud