I am creating bitmaps using the bitmap.save() method and the resulting images (800x600) are very pixalated when the are zoomed in on with image edition software (Photoshop, Paint, etc). Is there a way I could set the resolution higher to prevent the pixelation?
Private mBitmap As Bitmap
Public Function Export() As Byte()
mMap.OpenAllLayers()
mMap.DrawStaticLayers(mBitmap, GeographyUnit.DecimalDegree)
mMap.DrawAdornmentLayers(mBitmap, GeographyUnit.DecimalDegree)
mMap.CloseAllLayers()
Dim lStream As New System.IO.MemoryStream
mBitmap.Save(lStream, Imaging.ImageFormat.Png)
Return lStream.GetBuffer()
End Function