Done.
Many thanks!!
Search found 2 matches
- 2018-07-26T09:58:58-07:00
- Forum: Magick.NET
- Topic: Multiple uses of IPTC tags
- Replies: 2
- Views: 8416
- 2018-07-25T13:20:01-07:00
- Forum: Magick.NET
- Topic: Multiple uses of IPTC tags
- Replies: 2
- Views: 8416
Multiple uses of IPTC tags
Hi - I'm trying to create an IPTC profile using code like this: IptcProfile iptc = new IptcProfile(); iptc.SetValue(IptcTag.Keyword, "First"); iptc.SetValue(IptcTag.Keyword, "Second"); And what I see in the created profile is a single occurrence of the "Keyword" tag (25) with value "Second". The ...