Next we get the metadata back from the image. First we create a
File object and open the existing caption metadata. Then we copy
the text of the metadata into our title variable.
Set theFile = Server.CreateObject("MetaFiler2.File")
theFile.SetFile(thePath)
Set theMetaData = theFile.Open("title")
theTitle = theMetaData.Text
|