The trick with PDF files is to specify the DPI when you read the file.
Can you test if that helps to resolve your issue?
MagickReadSettings settings = new MagickReadSettings() { Density = new Density(96) }; using (MagickImage image = new MagickImage("your.pdf", settings)) { }