Hi all, I'm trying to write a webApplication that holds two png images- big one and smaller one, I need to use the bigger one as a base and place the smaller one on it in a specific posiotion, the smaller one has transparent areas so it adds information to the base picture.
I'm using GDI+ with C#, but I managed only to upload one picture (the base one) using the following code: Bitmap objImage = new Bitmap("basePngPicturePath"); objImage.Save(Response.OutputStream, ImageFormat.Jpeg); objImage.Dispose();
I could,'t use two pictures- it doesn't work... and this was the only way I managed to upload a picture. HELP PLEASE!!! I really need this to work...