need to combine 2 images to 1 image (the image and the logo…)
thanks
Google BitMapManipulator. It is a class that is meant for that. Or just google add image overlay with asp.net
What NightStalker said. For fun however, you could use CSS and absolute positioning.
Got bored . Here is an example of the post I have above:
#header
{
background: #FFFFFF url(images/image-bg.gif);
}
/*add image inside header with H1*/
#header h1
{
text-align: -999px;
margin:0px;
padding: 0px;
background: url(img/watermark.gif) no-repeat top left;
}
I didn’t test the code, but you get the gist. If you want an image inside an image, create a box (<div>) for example, set the background image, and add in image on-top of it (such as a water mark) using absolute positioning or relative to the container (<div>) positioning. I hope you get what I am saying. And you can create CSS pages within ASP.NET dynamically, instead of static.