Tutorials Point


  Java Basics Examples
  Java Tutorial
  Java Useful Resources
  Selected Reading

© 2011 TutorialsPoint.COM


  Home     References     Discussion Forums     About TP  

Java Examples - Fill colors using an Applet


previous next AddThis Social Bookmark Button


Problem Description:

How to fill colors in shapes using Applet?

Solution:

Following example demonstrates how to create an applet which will have fill color in a rectangle using setColor(), fillRect() methods of Graphics class to fill color in a Rectangle.

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

public class  fillColor extends Applet{
   public void paint(Graphics g){
      g.drawRect(300,150,200,100);
      g.setColor(Color.yellow);   
      g.fillRect( 300,150, 200, 100 );
      g.setColor(Color.magenta);
      g.drawString("Rectangle",500,150);
   }
}

Result:

The above code sample will produce the following result in a java enabled web browser.

A Rectangle with yellow color filled in it willl be drawn in the browser.


previous next Printer Friendly



  

Advertisement

Online Image Processing

Indian Baby Names