I am working on a project which requires some image processing.
The web client is going to submit image of format jpg, png, gif tif. The server side needs to find out the dimension and the size of the image.
I can see some of the Java classes achieve this by processing an image file. Is there any way/library I can use to avoid saving the binary into a file and still get the dimension?
Many thanks