Sunday, November 27, 2011

Draw Smiley In Applet Example


  1. /*
  2. Draw Smiley In Applet Example
  3. This Java example shows how to to draw smiley in an applet window using
  4. drawString Java Applet class.
  5. */
  6.  
  7.  
  8. import java.awt.*;
  9. import java.applet.*;
  10.  
  11. public class Smiley extends Applet{
  12.  
  13. public void paint(Graphics g){
  14.  
  15. Font f = new Font("Helvetica", Font.BOLD,20);
  16. g.setFont(f);
  17. g.drawString("Keep Smiling!!!", 50, 30);
  18. g.drawOval(60, 60, 200, 200);
  19. g.fillOval(90, 120, 50, 20);
  20. g.fillOval(190, 120, 50, 20);
  21. g.drawLine(165, 125, 165, 175);
  22. g.drawArc(110, 130, 95, 95, 0, -180);
  23. }
  24. }

No comments:

Post a Comment

How to find the most appropriate Keywords?

  🔍 Step 1: Understand Your Business and Audience Define your products, services, or content . Identify your target audien...