Clone EXIF data from one image to another copy using MAGICK.NET-Q16

Viewed 27

I am using MAGICK.NET-Q16 to copy images from one folder to another and change the format. Destination image format has to be JPEG.

I use this code:

using MagickImage image = new(SourceFileName);
await image.WriteAsync(TargetFileName, MagickFormat.Jpeg);

This works fine, but I want to copy creation time, modification time, and EXIF data with the image as well.

0 Answers
Related