Source Code : Stroking or Filling with a Texture
Java Is Open Source Programming Language You Can Download From Java and Java Libraries From http://www.oracle.com.
Click Here to download
We provide this code related to title for you to solve your developing problem easily. Libraries which is import in this program you can download from http://www.oracle.com.
Click Here or search from google with Libraries Name you get jar file related it
Stroking or Filling with a Texture
import java.awt.Graphics;
import java.awt.Graphics2D;
import java.awt.Rectangle;
import java.awt.TexturePaint;
import java.awt.image.BufferedImage;
import javax.swing.JComponent;
import javax.swing.JFrame;
public class BasicDraw {
public static void main(String[] args) {
JFrame frame = new JFrame();
frame.add(new MyComponent());
frame.setSize(300, 300);
frame.setVisible(true);
}
}
class MyComponent extends JComponent {
public void paint(Graphics g) {
Graphics2D g2d = (Graphics2D) g;
int x = 10;
int y = 10;
int width = 50;
int height = 25;
BufferedImage bi = new BufferedImage(20,20,BufferedImage.TYPE_INT_RGB);
TexturePaint texture = new TexturePaint(bi, new Rectangle(x, y, width, height));
g2d.setPaint(texture);
}
}
Thank with us