For a project I'm working on, I'm using Magick.NET to save PNG files that are smaller than what the default .NET encoder will save. One of the requirements is that I need to be able to set a few different tEXT comments in PNG files when I save the files. I found the MagickImage.Comment property, but that sets a tEXT chunk with Key = "Comment" and value equal to what I set in MagickImage.Comment.
Is there any way to set multiple such tEXT chunks, each with a different key name and value?
Also, after I've done that, is there any way to read this info back using Magick.NET? Well, in the worst case, I think I can read the info using the .NET PNG decoder, but I still need a way to write that info to the PNG file.
Is there any way to set multiple such tEXT chunks, each with a different key name and value?
Also, after I've done that, is there any way to read this info back using Magick.NET? Well, in the worst case, I think I can read the info using the .NET PNG decoder, but I still need a way to write that info to the PNG file.