Java GradientPaint(float x1, float y1, Color color1, float x2, float y2, Color color2) Constructor

Syntax

GradientPaint(float x1, float y1, Color color1, float x2, float y2, Color color2) constructor from GradientPaint has the following syntax.

public GradientPaint(float x1,    float y1,    Color color1,    float x2,    float y2,    Color color2)

Example

In the following code shows how to use GradientPaint.GradientPaint(float x1, float y1, Color color1, float x2, float y2, Color color2) constructor.


import java.awt.Color;
import java.awt.GradientPaint;
import java.awt.Graphics;
import java.awt.Graphics2D;
/* w  ww  .  j a  v  a 2 s  .  c  o m*/
import javax.swing.JFrame;
import javax.swing.JPanel;

public class Main extends JPanel {

  public void paint(Graphics g) {
    super.paint(g);
    Graphics2D g2d = (Graphics2D) g;

    GradientPaint gp1 = new GradientPaint(5, 5, Color.red, 20, 20, Color.yellow);

    g2d.setPaint(gp1);
    g2d.fillRect(20, 20, 300, 40);

  }

  public static void main(String[] args) {

    JFrame frame = new JFrame("GradientsRedYellow");
    frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    frame.add(new Main());
    frame.setSize(350, 350);
    frame.setLocationRelativeTo(null);
    frame.setVisible(true);
  }
}




















Home »
  Java Tutorial »
    java.awt »




BasicStroke
BorderLayout
CardLayout
Color
Cursor
Desktop
DesktopManager
DisplayMode
EventQueue
FlowLayout
FocusTraversalPolicy
Font
FontMetrics
GradientPaint
Graphics
Graphics2D
GraphicsConfiguration
GraphicsDevice
GraphicsEnvironment
GridBagConstraints
GridBagLayout
GridLayout
Image
ItemSelectable
KeyboardFocusManager
LayoutManager
LayoutManager2
Point
Rectangle
Robot
Shape
SplashScreen
SystemColor
SystemTray
TexturePaint
TrayIcon
Toolkit
Transparency