Hi all

I have this two bitmaps i want to add and send to a file.


Code:
Mybitmap1 = new Bitmap(MyFilePath1);
Mybitmap2 = new Bitmap(MyFilePath2);


MySumBitmap = Mybitmap1 + Mybitmap2; 


MySumBitmap.Save(MySumPath);

How to do that sum?


Ty in advance!!