Hi
In image .jpeg file get author name for “Author” property is there how to get that built in property.
Note:
I need to get built properties for jpeg file, .tif ,.tiff, note file (.one)and digram files (.vsd),xps document
for ex:
WORD:
If docExt.ToLower = “doc” Or docExt.ToLower = “docx” Then
Dim fileName As String = strval
Dim doc As New Aspose.Words.Document(fileName)
ret = doc.BuiltInDocumentProperties.Author
ElseIf docExt.ToLower = “jpeg” Then
Dim fileName As String = strval
ElseIf (docExt.ToLower = “one”) Then
Dim fileName As String = strval
ElseIf ((docExt.ToLower = “vsd”) Or (docExt.ToLower = “vsdx”) Or (docExt.ToLower = “vss”) Or (docExt.ToLower = “vst”) Or (docExt.ToLower = “vsx”) Or (docExt.ToLower = “vtx”) Or (docExt.ToLower = “vdw”) Or (docExt.ToLower = “vdx”)) Then
Dim fileName As String = strval
Dim ppft As New Diagram(fileName)
endif