I have made a auction site. In which i have to overlap an image on another after the product is sold.
Like Closed auction in http://www.bidrivals.com.
Please send me a code about that
The two images are uploaded.
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
paraveen kumarPosted Sep 22, 2010, 8:17 AM
I am facing problem with the dynalically generating the image at particular with coordinate points on image map through code behind (aspx.cs).
As per my requirement i need to generate Hotspots dynamically and also displaying an image to indicate the Hot spots.
Please send me the code above that ...
[email protected]
thanks in advance
Hiren SoniPosted Aug 31, 2010, 9:19 AM
System.Drawing.Image original = Image.FromFile("main_item_file.jpg");
Graphics gra = Graphics.FromImage(original);
Bitmap logo = (Bitmap)Image.FromFile("sold_logo.jpg");
gra.DrawImage(logo, new Point(70, 70));
original.Save("filename.jpg");