java graphics code example
Example 1: Java.awt graphics tutorial
//For Drawing Text
g.drawString("Hello", 10, 10);
// For Drawing Images
g.drawImage(img,
0, 0, width, height,
0, 0, imageWidth, imageHeight,
null);
// For Drawing Shapes
g2.draw(new Line2D.Double(0, 0, 30, 40));
Example 2: java GraphicsOperations.drawLine
GraphicsOperations.drawLine