What kind of metadata are you trying to extract? There are various methods in MagickImage to read metadata:
Can you post a sample image I can use for testing?
using (MagickImage image = new MagickImage("srcPath.jpg")) { image.Get8BimProfile(); image.GetExifProfile(); image.GetIptcProfile(); }