If I combine two images using the technique described here:
Combine two Images into one new Image
How can I reconstruct the two separate images from their combined form?
If I combine two images using the technique described here:
Combine two Images into one new Image
How can I reconstruct the two separate images from their combined form?
Assuming that you know the sizes of the original bitmaps you can just clone a rectangle of the bitmap:
Bitmap bitmapLeft = bitmap.Clone(new Rectangle(0, 0, widthLeft, heightLeft), PixelFormat.DontCare);
Bitmap bitmapRight = bitmap.Clone(new Rectangle(widthLeft, 0, widthRight, heightRight), PixelFormat.DontCare);