Combine Images in VB.NET

woklet

Member
Joined
Mar 4, 2005
Messages
15
Programming Experience
5-10
I'm looking for source code in VB.NET on how to concatenate two bitmaps together, top and bottom.

I've tried using the BitBlt function but can't quite seem to get it.

Thanks in advance,
Ben
 
You should be able to dim a new bitmap and a graphics for that bitmap. Then use the graphics to drawimage(firstBMP,0,0) drawimage(secondBMP,0,100) (where 100 is the height of firstbmp)
 
Back
Top