Adds a list of tags to the bitmap or updates their values in case they already exist. Key will be used as key.

Namespace:  FreeImageAPI.Metadata
Assembly:  FreeImageNET (in FreeImageNET.dll)

Syntax

C#
public int AddTag(
	IEnumerable<MetadataTag> list
)
Visual Basic (Declaration)
Public Function AddTag ( _
	list As IEnumerable(Of MetadataTag) _
) As Integer
Visual C++
public:
int AddTag(
	IEnumerable<MetadataTag^>^ list
)

Parameters

list
Type: System.Collections.Generic..::.IEnumerable<(Of <(MetadataTag>)>)
A list of tags to add or update.

Return Value

Returns the number of successfully added tags.

Exceptions

ExceptionCondition
System..::.ArgumentNullException list is null.

Version Information

FreeImage.NET

Supported in: 3.11.0, 3.12.0, 3.13.0, 3.13.1

See Also