ThinkGeo.com    |     Documentation    |     Premium Support

Creating a bitmap

In Version 2.0 the code to create a bit map was:


Dim MyBitmap As Bitmap = Map1.GetBitmap(1024, 768, False) 

How does this work in Version 3.0?


Thanks!



Cyndi, 
  
 Thanks for the post! 
  
 With the last beta refresh we added the GetBitmap Method similar to the 2.0 version.  Below is some sample code on how to sue it. 
  
 Dim myBitMap As System.Drawing.Bitmap = Map1.GetBitmap(1024, 768) 
 myBitMap.Save("C:\Test.bmp") 
  
 Thanks!