is it possible to change exif data from photos ? I get the exif data thus :
var directories = ImageMetadataReader.ReadMetadata(file);
foreach (var directory in directories)
{
foreach (var tag in directory.Tags)
Console.WriteLine($"[{directory.Name}] {tag.Name} = {tag.Description}");
if (directory.HasError)
{
foreach (var error in directory.Errors)
Console.WriteLine($"ERROR: {error}");
}
}
Now I need to replace the exif data from other photos to these, is that possible ?
How to edit EXIF data in .NET - its not correct answer, because all this librarycant edit exif , just read