テキスト付きのシンプルな画像を作成できますが、テキストに MS Word Art フォントを適用したいと考えています。参照リンクまたはヘルプをいただければ幸いです。
テキストで画像を作成するコードは次のとおりです。
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();
ありがとう