When I save an image of the map, the saved jpg image is offset and clipped. Here is the simple code:
using (var bm = new Bitmap(winformsMap1.Width, winformsMap1.Height))
{
winformsMap1.DrawToBitmap(bm, winformsMap1.Bounds);
bm.Save(sfd.FileName, System.Drawing.Imaging.ImageFormat.Jpeg);
}
I’ve also tried winformsMap1.Bounds.Width. Attached are the image of the form and the associate clipped image.