我正在尝试在图像上写文字,但我的文字有很多字,而且不适合单行。所以我需要在下图中添加新行(比如换行)是我正在使用的代码。
string strFileName = Server.MapPath("~") + "\\Certificate\\" + CertificateName.ToString();
Bitmap bitMapImage = new Bitmap(strFileName);
Graphics graphicImage = Graphics.FromImage(bitMapImage);
graphicImage.SmoothingMode = SmoothingMode.AntiAlias;
graphicImage.DrawString(strCourseName, new System.Drawing.Font("Arial", 22, FontStyle.Bold), SystemBrushes.GrayText, new Point(280, 325));
string strDesImgName = Server.MapPath("~") + "\\Certi\\certificate.jpg";
bitMapImage.Save(strDesImgName, ImageFormat.Jpeg);
graphicImage.Dispose();
bitMapImage.Dispose();
任何人都可以建议我,我如何在下一行插入额外的文本。提前致谢。