is there a way to get the dimension of an image without reading the entire file ?
URL url=new URL(<BIG_IMAGE_URL>);
BufferedImage img=ImageIO.read(url);
System.out.println(img.getWidth()+" "+img.getHeight());
img=null;
Thanks
|
is there a way to get the dimension of an image without reading the entire file ?
Thanks |
|||||
|
Thanks to sfussenegger for the suggestion |
|||||||||
|
|
Using ImageReader.getHeight(int) and ImageReader.getWidth(int) normally only reads the image header (I'm looking at JDK6 sources). So ImageReader is most likely the best choice. |
|||
|
|
|
You'll have to look into You can find descriptions of the metadata formats in the package documentation of There are third party libraries that are easier to use, such as MediaUtil (last updated 3 years ago, but it worked well for me). |
||||
|
|
|
Here is my Scala rewrite of Sam's code:
|
|||
|