Core Java| JSP| Servlets| XML| EJB| JEE5| Web Services| J2ME| Glossary| Questions?

 

 

 

 

 

 

 

 

 

 

 

 

 

Search Tutorials

Latest Questions
Comments
 
Get Image Size Example 
 

This Example shows you get the image size.

 

Get Image Size Example

                         

This Example shows you get the image size.

Description of the code :

Toolkit.getDefaultToolkit() : Toolkit class is used to bind the different components to specific native toolkit implementations. if we want to implementation Toolkit then firstly set System property named "java.awt.headless" is set to true.getDefaultToolkit is used for get the default toolkit.

Toolkit.getImage() : getImage method return a Image class object and this object get pixel data from the specified URL.

Graphics.drawImage() : drawImage method is used to draw a specified image as is currently available. The image is drawn with its top-left corner at (x, y) coordinate.

Image.getWidth() : getwidth method is used for get the image width.

Image.getHeight() : getwidth method is used for get the image Height.

Graphics.drawString() : drawImage method is used for draw a specified String. Its top-left corner at (x, y) coordinate.

Frame.setSize () : setSize method is used for set the frame size.

Frame.setVisible() : setVisile method is used for visible true or false.

GetImageSize.java

import java.awt.*;
import java.awt.event.*;
import java.util.Locale;

public class GetImageSize extends Frame {

    Image image;
    String imageName = "photo.jpg";
    
    int width,height;

    public GetImageSize() {

        addWindowListener(new WindowAdapter() {

            public void windowClosing(WindowEvent we) {
                System.exit(0);
            }
        });
    }

    public void paint(Graphics g) {
        Toolkit tool = Toolkit.getDefaultToolkit();

        image = tool.getImage(imageName);
        width=image.getWidth(this);
        height=image.getHeight(this);
        
        this.setSize(width+20,height+80 );
        
        g.drawImage(image, 1030this);
        
        g.setColor(new Color(180,0,0));
        g.setFont(new Font("Times New Roman",140));
        
        g.drawString(imageName.toUpperCase(Locale.ENGLISH), width/2-5070);
        
        g.setFont(new Font("Times New Roman",116));
        
        g.drawString("Image Size : "+width+
                "*"+height,10,height+60);
   }

    public static void main(String args[]) throws Exception {

        GetImageSize image = new GetImageSize();
        image.setVisible(true);
        image.setLocation(200100);
    }
}


Output:




Download code

 

                         

» View all related tutorials
Related Tags: c class ant help property get tutorial name ria this for to e des pe in as sta m nt

Leave your comment:

Name:

Email:

URL:

Title:

Comments:


Enter Code:

Audio Version
Reload Image
 

Note: Emails will not be visible or used in any way, and are not required. Please keep comments relevant. Any content deemed inappropriate or offensive may be edited and/or deleted.

No HTML code is allowed. Line breaks will be converted automatically. URLs will be auto-linked. Please use BBCode to format your text.

Add This Tutorial To:
  Del.icio.us   Digg   Google   Spurl   Blink   Furl   Simpy   Y! MyWeb 
Training Courses
Tell A Friend
Your Friend Name
Software Solutions
Least Viewed
Most Rated
Recently Viewed
Search Tutorials

 

 
 

Home | JSP | EJB | JDBC | Java Servlets | WAP  | Free JSP Hosting  | Search Engine | News Archive | Jboss 3.0 tutorial | Free Linux CD's | Forum | Blogs

About Us | Advertising On RoseIndia.net  | Site Map

India News

Indian Software Development Company | iPhone Development Company in India | Flex Development Company in India | Java Training Delhi | Java Training at Noida |

Send your comments, Suggestions or Queries regarding this site at roseindia_net@yahoo.com.

Copyright © 2008. All rights reserved.