Here is the
VB solution, courtesy of Imar Spaanjaars :
http://imar.spaanjaars.com/QuickDocId.aspx?QUICKDOC=235
' Load the Image
Dim objImage As System.Drawing.Image = _
System.Drawing.Image.FromFile("C:\MyImage.gif")
' Display its Height and Width
lblSize.Text = "Width: " & objImage.Width & "<br />Height: " & objImage.Height