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