width height of jpeg file

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Phil...

    width height of jpeg file

    how can i find the width and height of a jpeg file
    i am not interested in viewing the file i just want
    the height and width


  • Nathan Zumwalt

    #2
    Re: width height of jpeg file

    This should work:

    ImageIcon jpegImage = new ImageIcon("/path/to/image");
    int height = jpegImage.getIc onHeight();
    int width = jpegImage.getIc onWidth();

    -Nathan

    "Phil..." <[email protected] > wrote in message news:<fb5fb.666 490$Ho3.138357@ sccrnsc03>...[color=blue]
    > how can i find the width and height of a jpeg file
    > i am not interested in viewing the file i just want
    > the height and width[/color]

    Comment

    Working...