Java Swing Tutorial - Java Graphics.drawRoundRect(int x, int y, int width, int height, int arcWidth, int arcHeight)








Syntax

Graphics.drawRoundRect(int x, int y, int width, int height, int arcWidth, int arcHeight) has the following syntax.

public abstract void drawRoundRect(int x,   int y,   int width,   int height,   int arcWidth,   int arcHeight)

Example

In the following code shows how to use Graphics.drawRoundRect(int x, int y, int width, int height, int arcWidth, int arcHeight) method.

import java.awt.Graphics;
import java.awt.Image;
import java.awt.image.BufferedImage;
/*  w w  w . j  av a  2s.co  m*/
import javax.swing.JFrame;
import javax.swing.JPanel;

public class Main extends JPanel {

  public void paint(Graphics g) {
    g.drawRoundRect(25, 50, 100, 100, 25, 50);
  }

  public static void main(String[] args) {
    JFrame frame = new JFrame();
    frame.add(new Main());
    frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    frame.setBounds(20,20, 500,500);
    frame.setVisible(true);
  }
}