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

Standard and Formatted Input / Output in C++

The C++ standard libraries provide an extensive set of input/output capabilities which we will see in subsequent chapters. This chapter will discuss very basic and most common I/O operations required for C++ programming. C++ I/O occurs in streams, which are sequences of bytes. If bytes flow from a device like a keyboard, a disk drive, or a network connection etc. to main memory, this is called   input operation   and if bytes flow from main memory to a device like a display screen, a printer, a disk drive, or a network connection, etc., this is called   output operation . Standard Input and Output in C++ is done through the use of  streams . Streams are generic places to send or receive data. In C++, I/O is done through classes and objects defined in the header file  <iostream> .  iostream  stands for standard input-output stream. This header file contains definitions to objects like  cin ,  cout , etc. /O Library Header Files There are...

locking

DBMS Locking Part I (DBMS only) TECHNICAL ARTICLES -> PERFORMANCE ARTICLES [  Back  ] [  Next  ] DBMS is often criticized for excessive locking – resulting in poor database performance when sharing data among multiple concurrent processes. Is this criticism justified, or is DBMS being unfairly blamed for application design and implementation shortfalls? To evaluate this question, we need to understand more about DBMS locking protocols. In this article, we examine how, why, what and when DBMS locks and unlocks database resources. Future articles will address how to minimize the impact of database locking. THE NEED FOR LOCKING In an ideal concurrent environment, many processes can simultaneously access data in a DBMS database, each having the appearance that they have exclusive access to the database. In practice, this environment is closely approximated by careful use of locking protocols. Locking is necessary in a concurrent environment to as...

DATA WAREHOUSE VERSUS DATA MART: THE GREAT DEBATE

DATA WAREHOUSE VERSUS DATA MART: THE GREAT DEBATE Customers exploring the field of business intelligence for the first time often lead with: What is the difference between a data warehouse and a data mart? The next question follows as predictably as night follows day: which one does my company need? Let me start by saying that the two terms are often confused. Indeed, some people in the industry use them virtually interchangeably, which is unfortunate, because they do reflect a valuable hierarchical difference. The Data Warehouse A "data warehouse" will typically contain the full range of business intelligence available to a company from all sources. That data consists of transaction-processing records, corporate and marketing data, and other business operations information; for example, a bank might include loans, credit card statements, and demand deposits data, along with basic customer information. This internal data is frequently combined with statistica...