1. read in images, using
Image.FromFile[
^]
2. do some processing to align, rotate, colour balance etc the images (this is the hard part which you need to solve!)
3. merge the images by creating a single large Bitmap and drawing each of the other images onto its Graphics object with DrawImage
4. save the resulting Bitmap with
Image.Save[
^]