This document discusses Java applet methods for drawing graphics. It lists methods such as drawString, drawRect, fillRect, drawOval, fillOval, drawLine, drawImage, drawArc, fillArc, setColor, setFont. These methods allow applets to draw strings, rectangles, ovals, lines, images, arcs and set colors and fonts. Loading an image in an applet can be done in the load method, and the drawImage method can be used to draw the image in the paint method.
This document discusses Java applet methods for drawing graphics. It lists methods such as drawString, drawRect, fillRect, drawOval, fillOval, drawLine, drawImage, drawArc, fillArc, setColor, setFont. These methods allow applets to draw strings, rectangles, ovals, lines, images, arcs and set colors and fonts. Loading an image in an applet can be done in the load method, and the drawImage method can be used to draw the image in the paint method.
• public abstract void drawString(String str, int x, int
y): is used to draw the specified string.
• public void drawRect(int x, int y, int width, int
height): draws a rectangle with the specified width and height.
• public abstract void fillRect(int x, int y, int width,
int height): is used to fill rectangle with the default color and specified width and height. JAVA APPLET METHODS—2 • public abstract void drawOval(int x, int y, int width, int height): is used to draw oval with the specified wivdth and height.
• public abstract void fillOval(int x, int y, int width, int
height): is used to fill oval with the default color and specified width and height.
• public abstract void drawLine(int x1, int y1, int x2,
int y2): is used to draw line between the points(x1, y1) and (x2, y2). JAVA APPLET METHODS—3 public abstract boolean drawImage(Image img, int x, int y, ImageObserver observer): is used draw the specified image.
public abstract void drawArc(int x, int y, int width,
int height, int startAngle, int arcAngle): is used draw a circular or elliptical arc. JAVA APPLET METHODS—4 public abstract void fillArc(int x, int y, int width, int height, int startAngle, int arcAngle): is used to fill a circular or elliptical arc.
public abstract void setColor(Color c): is used to set
the graphics current color to the specified color.
public abstract void setFont(Font font): is used to set
the graphics current font to the specified font. JAVA APPLET Example PROGRAM-- GraphicsDemo.java Loading an image in an applet can be done in its load method. After init method is called by the browser automatically at initialization of the applet, we can draw loaded image in paint method using drawImage method of the applet.
Note that paint method is automatically called too