dc.DrawImage(imgsrc, new Rect(0, 0, imgsrc.PixelWidth / (dpiX / **96.0**), imgsrc.Height / (dpiY / **90.0**))); Do you think 96.0 and 96.0 for each axis would provide the proper scaling?
dc.DrawImage(imgsrc, new Rect(0, 0, imgsrc.PixelWidth / (dpiX / 96.0), imgsrc.Height / (dpiY / 90.0)));
Do you think 96.0 and 96.0 for each axis would provide the proper scaling?