C# Imaging Library
How to C#: Modify Image Metadata (tag)
With XImage.Raster, you can get the image tags and modify them rapidly.
With the XImage.Raster library, you can get comments of the image, you can modify the comments according to the standard our XImage.Raster supports.
How to read, edit image metadata using C#?
Our XImage.Raster SDK private APIs to modify comments in class ImageProcess as follows:
public void AddComment(string comment);
public void AddComment(string comment, int pageIndex);
public void DeleteComment();
public void DeleteComment(int pageIndex);
public string GetComment();
public string GetComment(int pageIndex);
Modify Image Tags in C#
You can modify the tags of the image with the code as follows.
Sample Code (modify the comments of image):
RasterImage img = new RasterImage("raster-sample-image.png");
ImageProcess processor = new ImageProcess(img);
processor.AddComment("RasteEdge.XImage.Raster");