The problem with your images seems to be the 8BIM profile. When you remove this profile file explorer will show the correct value.
Your second image does not show the correct DPI because the ResolutionUnits value is undefined. You can get the required result with the following code:
I am currently investigating if we can change ImageMagick to update the 8BIM profile, I will keep you updated.
Your second image does not show the correct DPI because the ResolutionUnits value is undefined. You can get the required result with the following code:
using (MagickImage image = new MagickImage("11267DVDLEF.eps")) { image.RemoveProfile("8BIM"); image.Density = new MagickGeometry(72, 72); image.ResolutionUnits = Resolution.PixelsPerInch; image.Write("11267DVDLEF.jpg"); }