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!!
Printable View
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!!
So you want to have the two images into one ? or what ?
Yes thats right. Sum into one and make a bmp file.
Are u talknig about merging images? If so take a look at this
http://www.codeproject.com/csharp/wa...asp?print=true
Just create a bitmap that is horizontally the size of the width of both images and then draw them and save it in the end lol
I got it!!
Thanks John, i read the article and got it!!!! Its well documented!!
Ty all