| Author |
width and height using image object
|
vidyadhar Joshi
Greenhorn
Joined: Oct 15, 2002
Posts: 1
|
|
|
how to reterive width and height of a gif image using image object.
|
 |
Nathan Pruett
Bartender
Joined: Oct 18, 2000
Posts: 4121
|
|
|
Did you happen to see the getWidth() and getHeight() methods on the Image class in the JavaDocs? They take an ImageObserver as a parameter, but all Components are ImageObservers, so you usually have no problem passing a parameter in. Usually it's a good idea to run your Image through a MediaTracker to make sure it's loaded before trying to get information from it...
|
-Nate
Write once, run anywhere, because there's nowhere to hide! - /. A.C.
|
 |
 |
|
|
subject: width and height using image object
|
|
|