Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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

share|improve this question
Did you try truncating image content, just passing a small portion, say 10kb, of the image to ImageIO.read? – Mohsen Oct 13 '09 at 10:11
possible duplicate of How to get image height and width using java? – ripper234 Jan 31 '12 at 8:52

4 Answers

up vote 28 down vote accepted
ImageInputStream in = ImageIO.createImageInputStream(resourceFile);
try {
	final Iterator readers = ImageIO.getImageReaders(in);
	if (readers.hasNext()) {
		ImageReader reader = (ImageReader) readers.next();
		try {
			reader.setInput(in);
			return new Dimension(reader.getWidth(0), reader.getHeight(0));
		} finally {
			reader.dispose();
		}
	}
} finally {
	if (in != null) in.close();
}

Thanks to sfussenegger for the suggestion

share|improve this answer
1  
Awesome... Your code worked me perfect. I tried couple of code, but those codes are failed in some use cases. You saved my time... Thank you. – vissu Dec 20 '11 at 12:02
The code presented issues a warning in Eclipse: Iterator is a raw type. References to generic type Iterator<E> should be parameterized. Remedy options offered by Eclipse: rename in file (Ctrl+2, R direct access), Add type parameters to 'Iterator', Infer Generic Type Arguments..., Add @SuppressWarnings 'unchecked' to 'methodNameHere'. What's the syntactically correct fix for it? – David Aug 22 '12 at 23:40
Also the code snippet doesn't mention the class references needed to use the code. From Eclipse, seems to be: import javax.imageio.ImageIO; import javax.imageio.ImageReader; import javax.imageio.stream.ImageInputStream; – David Aug 22 '12 at 23:41

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.

share|improve this answer

You'll have to look into ImageReader.getImageMetadata(). Unfortunately, The Java Image API is not at all easy to use.

You can find descriptions of the metadata formats in the package documentation of javax.imageio.metadata.

There are third party libraries that are easier to use, such as MediaUtil (last updated 3 years ago, but it worked well for me).

share|improve this answer

Here is my Scala rewrite of Sam's code:

ImageIO createImageInputStream file match {

    case null => None

    case in =>

        val readers = ImageIO getImageReaders in

        try {

            val reader = readers.next
            reader setInput in

            try Some(new Dimension(reader getWidth 0, reader getHeight 0))
            catch {
                case _: IOException => None
            } finally reader.dispose

        } catch {
            case _: NoSuchElementException => None
        } finally in.close
}
share|improve this answer
for what the scala rewrite when the question opener asks about a java solution? this would not be a java solution, scala is not java (another programming language) but can use java programs eg as jar files ... – Daniel Ruf Jan 1 at 16:32

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.