Get image dimentions without loading it

Is there a way to read the image dimentions (width & height) without fully loading the image? I need to read the image dimentions in a loop for multiple images and am only intrested in their dimentions so wasting CPU on decoding the image is not needed.

Hello, @DanAvni
Aspose.Imaging.Image.Load loads only image information without pixel loading and decoding.
However, in some cases, it is necessary to make some calculations to get the width/height of the image. For example, WMF/SVG formats might not contain information about the final size of the image; in this case, it would be loaded completely to get the image size.