I have a file with the following properties:

I want to get the name of the description "Dragon Eye Coral". How can I do it?
I tried to do this with the following code, but without any results:
public string GetImageTitle(Image img) { const int metTitle = 0x0320; var props = img.PropertyItems; var Title = props.FirstOrDefault(x => x.Id == metTitle); if (Title != null) { var myObject = Encoding.ASCII; var PicTitle = myObject.GetString(Title.Value, 0, Title.Len - 1); return PicTitle; } return ""; }
source share