Hello again community.
I’m trying to save the map as a high resolution image. I’m able to save the map as a regular image, and that works great. But now I need to save that as size A1 (3508 x 4967). The following method does not work, since it will create an image like the one I’m attaching. Basically, saves the current extent of the map and fills the rest of the bitmap with black.
Bitmap auxBitmap = winformsMap1.GetBitmap(4967, 3508);
auxBitmap.Save(saveFileDialog.FileName, saveFormat);
Is there any way to accomplish this? Time is a factor here since I’m already late on a deadline.
Thanks!
Juan.