IAmGroot
IAmGroot

Reputation: 13855

Write Text ontop of an Image dynamically in ASP.NET MVC3

How would I write Text ontop of an image, and if possible, at an angle.

So, the box is the origional image. 64x64 for example.

And I want to write text on it for example test

It needs to be rotated ~30 degrees as seen. and If possible too, leaning away at the top.enter image description here

So that It seems like it is written on the surface.

I have no experience with C# Graphics, and would like some help please. Please include any using references for my ease.

Upvotes: 1

Views: 1412

Answers (1)

Nader Sghir
Nader Sghir

Reputation: 81

You can use JavaScript and jQuery functions and Css 3.0 to update add a div containing your text ontop of the image and then rotate it. this link may help you to reach your goal

Upvotes: 3

Related Questions