Я бы порекомендовал использовать DotImage Photo от Atalasoft Это мощное и бесплатное приложение!Но это пакет .NET, поэтому вам придется сделать Regasm Magic , чтобы он заработал.Перед тем, как начать, проверьте Используйте vb.net в VBScript .
Вот код, который вам понадобится для получения размеров.
Public Function GetHeight(path As String) As Integer
Using stm As New FileStream(path, FileMode.Open, FileAccess.Read, FileShare.Read)
Dim decoder As New TiffDecoder()
If Not decoder.IsValidFormat(stm) Then
Throw New Exception("not a TIFF")
End If
Dim image As AtalaImage = decoder.Read(stm, Nothing)
Return image.Height
' Return image.Width --- To return the Width.
End Using
End Function