Java Grphics Code Example

Snippet 1

  //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));
 

Copyright © Code Fetcher 2020

 

 

Published

Leave a comment

Your email address will not be published. Required fields are marked *