In fact, this snippet of code might be of some use for when you first open your image file...
strLocation = "Your File Location"
Dim objFileStream As New FileStream(strLocation, FileMode.Open)
mobjImage = Image.FromStream(objFileStream)
objFileStream.Close()