I know how to get the size (x,y) of an image
Image.FromFile(\"cat.jpg\").Size
BUT that requires loading the image from memory.
When
You can just use Image.FromStream(Stream, bool, bool) with "false" 2nd and 3rd parameter to avoid loading file into memory.