How to use a background image
I am trying to create a image. for that I want to use another image as back ground and write on it on a particular area. of that background image more like ...say...copyrights on the corner ..or watermarks..but not the same
Richard BlythePosted Mar 30, 2007, 12:05 PM
What I would suggest is to create two Bitmap objects. One to hold the background image and the other to hold the copywrite/watermark image. Next create a Graphics object from the background bitmap:
Graphics g=Graphics.FromImage(bmpBackground);
Then use the graphics object to draw the watermark:
g.DrawImage(bmpWaterMark, 1,1);
//Release system resources
g.Dispose();
bmpWaterMark.Dispose();
I hope this helps!
Richard