Skip to main content

Java Swing: Displaying Graphics and Image


Displaying graphics in swing:

java.awt.Graphics class provides many methods for graphics programming.

Commonly used methods of Graphics class:

  1. public abstract void drawString(String str, int x, int y): is used to draw the specified string.
  2. public void drawRect(int x, int y, int width, int height): draws a rectangle with the specified width and height.
  3. public abstract void fillRect(int x, int y, int width, int height): is used to fill rectangle with the default color and specified width and height.
  4. public abstract void drawOval(int x, int y, int width, int height): is used to draw oval with the specified width and height.
  5. public abstract void fillOval(int x, int y, int width, int height): is used to fill oval with the default color and specified width and height.
  6. public abstract void drawLine(int x1, int y1, int x2, int y2): is used to draw line between the points(x1, y1) and (x2, y2).
  7. public abstract boolean drawImage(Image img, int x, int y, ImageObserver observer): is used draw the specified image.
  8. public abstract void drawArc(int x, int y, int width, int height, int startAngle, int arcAngle): is used draw a circular or elliptical arc.
  9. public abstract void fillArc(int x, int y, int width, int height, int startAngle, int arcAngle): is used to fill a circular or elliptical arc.
  10. public abstract void setColor(Color c): is used to set the graphics current color to the specified color.
  11. public abstract void setFont(Font font): is used to set the graphics current font to the specified font.

Example of displaying graphics in swing:

Example of displaying graphics in swing
  1. import java.awt.*;  
  2. import javax.swing.JFrame;  
  3.   
  4. public class DisplayGraphics extends Canvas{  
  5.       
  6.     public void paint(Graphics g) {  
  7.         g.drawString("Hello",40,40);  
  8.         setBackground(Color.WHITE);  
  9.         g.fillRect(13030,10080);  
  10.         g.drawOval(30,130,5060);  
  11.         setForeground(Color.RED);  
  12.         g.fillOval(130,130,5060);  
  13.         g.drawArc(3020040,50,90,60);  
  14.         g.fillArc(3013040,50,180,40);  
  15.           
  16.     }  
  17.         public static void main(String[] args) {  
  18.         DisplayGraphics m=new DisplayGraphics();  
  19.         JFrame f=new JFrame();  
  20.         f.add(m);  
  21.         f.setSize(400,400);  
  22.         //f.setLayout(null);  
  23.         f.setVisible(true);  
  24.     }  
  25.   
  26. }  

Displaying image in swing:

For displaying image, we can use the method drawImage() of Graphics class.

Syntax of drawImage() method:

  1. public abstract boolean drawImage(Image img, int x, int y, ImageObserver observer): is used draw the specified image.

Example of displaying image in swing:

Example of displaying image in swing
  1. import java.awt.*;  
  2. import javax.swing.JFrame;  
  3.   
  4. public class MyCanvas extends Canvas{  
  5.       
  6.     public void paint(Graphics g) {  
  7.   
  8.         Toolkit t=Toolkit.getDefaultToolkit();  
  9.         Image i=t.getImage("p3.gif");  
  10.         g.drawImage(i, 120,100,this);  
  11.           
  12.     }  
  13.         public static void main(String[] args) {  
  14.         MyCanvas m=new MyCanvas();  
  15.         JFrame f=new JFrame();  
  16.         f.add(m);  
  17.         f.setSize(400,400);  
  18.         f.setVisible(true);  
  19.     }  
  20.   
  21. }  


Anurag Rana Educator CSE/IT

Comments

Popular posts from this blog

C++ this Pointer, static, struct and Enumeration

C++ this Pointer In C++ programming,  this  is a keyword that refers to the current instance of the class. There can be 3 main usage of this keyword in C++. It can be used  to pass current object as a parameter to another method. It can be used  to refer current class instance variable. It can be used  to declare indexers. C++ this Pointer Example Let's see the example of this keyword in C++ that refers to the fields of current class. #include <iostream>    using   namespace  std;   class  Employee {       public :           int  id;  //data member (also instance variable)               string name;  //data member(also instance variable)            float  salary;          Employee( int  id, string name,  float  salary)             {                   this ->id = id;                  this ->name = name;                  this ->salary = salary;            }             void  display()             {                 cout<<id<< "  " <<name<&

Difference between net platform and dot net framework...

Difference between net platform and dot net framework... .net platform supports programming languages that are .net compatible. It is the platform using which we can build and develop the applications. .net framework is the engine inside the .net platform which actually compiles and produces the executable code. .net framework contains CLR(Common Language Runtime) and FCL(Framework Class Library) using which it produces the platform independent codes. What is the .NET Framework? The Microsoft .NET Framework is a platform for building, deploying, and running Web Services and applications. It provides a highly productive, standards-based, multi-language environment for integrating existing investments with next-generation applications and services as well as the agility to solve the challenges of deployment and operation of Internet-scale applications. The .NET Framework consists of three main parts: the common language runtime, a hierarchical set of unified class librari

Inference in First-Order Logic, Unification, and Resolution in FOL

Inference in First-Order Logic is used to deduce new facts or sentences from existing sentences. Before understanding the FOL inference rule, let's understand some basic terminologies used in FOL. Substitution: Substitution is a fundamental operation performed on terms and formulas. It occurs in all inference systems in first-order logic. The substitution is complex in the presence of quantifiers in FOL. If we write  F[a/x] , so it refers to substitute a constant " a " in place of variable " x ". Note: First-order logic is capable of expressing facts about some or all objects in the universe. Equality: First-Order logic does not only use predicate and terms for making atomic sentences but also uses another way, which is equality in FOL. For this, we can use  equality symbols  which specify that the two terms refer to the same object. Example: Brother (Chicky) = Ram. As in the above example, the object referred by the  Brother (Chicky)  is similar to the object r