I have to create an application that stitches more images into a big one
I have the code below that creates the final big image with the correct height and width.

Dim newBitmap = New Bitmap(2110, 600, Imaging.PixelFormat.Format32bppRgb)
Dim g = Graphics.FromImage(newBitmap)
g.FillRectangle(New SolidBrush(Color.White), New Rectangle(0, 0, 2110, 600))
newBitmap.Save("aaa.jpg")

I only have to put each small image into the big image and that exactly I dont know how to do.

Can anyone please guide me on this

Thanks