I need help related to bitmaps...
I have decalred a bitmap in which i drew some shapes, I want to save it as a Gif image
The thing is I want to have other things in the file such as labels or other bitmaps, but
I cant figure out how to do that... Can anyone give me an example on how to do that?
This is the code I use for the bitmap:
dim objBitmap as new Bitmap(400,300)
dim objGraphics as graphics
objGraphics = graphics.fromImage(objbitmap)
objGraphics.Clear(blue)
objGraphics.Save(response.OutputStream,imageFormat.gif)
I have decalred a bitmap in which i drew some shapes, I want to save it as a Gif image
The thing is I want to have other things in the file such as labels or other bitmaps, but
I cant figure out how to do that... Can anyone give me an example on how to do that?
This is the code I use for the bitmap:
dim objBitmap as new Bitmap(400,300)
dim objGraphics as graphics
objGraphics = graphics.fromImage(objbitmap)
objGraphics.Clear(blue)
objGraphics.Save(response.OutputStream,imageFormat.gif)