Reputation: 177
I want to know how do I create an Engraving function like on this website?
I have already googled about it, it seems like using Graphics.DrawString Method..
But all the tutorial is in windows form C# (not on webpage)..
Any idea how do I start?
Thank you..
Upvotes: 0
Views: 1137
Reputation: 34844
You have several options:
Graphics
object and then save the image to file or stream it to the browser for display. Check out Creating Images on the Fly with ASP.NET for a tutorial.Upvotes: 4