I am able to create simple image with text, but I want to apply MS Word Art font to my text. Any Reference link or help appreciated.

here is my code to create image with Text.

Font MyFont = new Font(FontFamily, Font,FontStyle.Bold, GraphicsUnit.Point);
MyGraphics = Graphics.FromImage(bmpImage);
MyGraphics.Clear(Color.FromName(Convert.ToString(Request.QueryString["bgColor"])));
MyGraphics.TextRenderingHint = TextRenderingHint.AntiAlias;
MyGraphics.DrawString(sImageText, MyFont,
                    new SolidBrush(Color.FromName(Convert.ToString(Request.QueryString["TextColor"]))), 0, 0);
MyGraphics.Flush();

Thanks

link|improve this question

feedback

1 Answer

Applying MS Word Art to text in images isn't supported by the .NET Framework libraries but you can apply certain effects. For examples, see Bob Powell's site.

link|improve this answer
thanks for your reply, if you see this thread forums.asp.net/p/1434707/4380294.aspx/… you will someone accomplish this – Muhammad Akhtar Apr 12 '11 at 18:29
I don't see it. – Mark Cidade Apr 12 '11 at 18:31
the link you have provided, I am already able to apply those effects, but My requirement is apply word art effect or create images with similar text style. – Muhammad Akhtar Apr 12 '11 at 18:34
There are different styles—which Word Art style do you want to apply? – Mark Cidade Apr 12 '11 at 18:35
something like... cheerzone.com/Lettering/… – Muhammad Akhtar Apr 12 '11 at 18:39
show 2 more comments
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.