User-1360958501 posted
To be a bit more specific....
It works when I use nothing as the base
<code>
Dim objBitmap = New Bitmap(350, 200)
Dim objGraphic
As Graphics = Graphics.FromImage(objBitmap)
</code>
But nothing happens when I use
<code>
Dim objBitmap = New Bitmap(Server.MapPath("image/Map.jpg"),350,200)
Dim objGraphic
As Graphics = Graphics.FromImage(objBitmap)
</code>
It's probably something very obvious. Thanks