|
Set the value of EXIF tag. You can set the value of any string type EXIF Tag.
Public Function SetExifStringValue( ByVal strTagName As String, _ ByVal strValue As String ) As Integer
|
Parameter
strTagName the string of Tag Name.
strValue the string of value.
Return Value
Return True - successful Return False - Failed
Example
|
Visual Basic Syntax ImageViewer1.IsUseExif = True ImageViewer1.SetExifStringValue "ImageTitle", "my title" ImageViewer1.Save("c:\test", "jpg")
|
|
|