0


是否可以在图像上写 3D 文本。我正在使用带有 c# 的 asp.net。如果可能的话,请给我一些想法。



这是我在图像上写文字的方法

私有只读字符串 _textOnImage = ConfigurationManager.AppSettings["textOnImage"]; 私有只读 int _opacity = Int32.Parse(ConfigurationManager.AppSettings["opicity"]); 私有只读 int _red = Int32.Parse(ConfigurationManager.AppSettings["red"]); 私有只读 int _green = Int32.Parse(ConfigurationManager.AppSettings["green"]); 私有只读 int _blue = Int32.Parse(ConfigurationManager.AppSettings["blue"]); 私有 int _fontSize = Int32.Parse(ConfigurationManager.AppSettings["fontSize"]); 私有只读 String _fontName = ConfigurationManager.AppSettings["fontName"];

私人布尔 _havException { 得到;放; } 私有字符串 _exceptionMessage { 获取;放; } 私有位图 SourceImage { 获取;放; } 私有位图 DestinationImage { 获取;放; } 公共图像方法() { _havException = 假; _exceptionMessage = string.Empty; }

public void AddWatermarkText(Image img, String TextOnImage) { TextOnImage = TextOnImage ?? _textOnImage; try { var lobFromImage = Graphics.FromImage(img); FindFontSize(lobFromImage, img, TextOnImage); var lobFont = new Font(_fontName, _fontSize, FontStyle.Regular); var lintTextHw = lobFromImage.MeasureString(TextOnImage, lobFont); var lintTextOnImageWidth = (int)lintTextHw.Width; var lintTextOnImageHeight = (int)lintTextHw.Height; var lobSolidBrush = new SolidBrush(Color.FromArgb(_opacity, Color.FromArgb(_red, _green, _blue))); var posLeft = (img.Width - lintTextOnImageWidth) / 2; posLeft = posLeft > 0 ? posLeft : 5; var lobPoint = new Point(posLeft, (img.Height / 2) - (lintTextOnImageHeight / 2)); // var lobPoint = new Point(RandomNumber(0, img.Width - lintTextOnImageWidth), RandomNumber(0, img.Height - lintTextOnImageHeight)); lobFromImage.DrawString(TextOnImage, lobFont, lobSolidBrush, lobPoint, StringFormat.GenericTypographic); lobFromImage.Dispose(); lobSolidBrush.Dispose(); lobFont.Dispose(); } catch (Exception ex) { _havException = true; _exceptionMessage = ex.Message; } return; } private void FindFontSize(Graphics lobGraphics, Image lobImage ,String textOnImage ) { var lobFont = new Font(_fontName, _fontSize, FontStyle.Regular); var lintTextHw = lobGraphics.MeasureString(textOnImage, lobFont); var lintTextOnImageWidth = (int)lintTextHw.Width; var lintImageWidth = lobImage.Width ; while (lintImageWidth < lintTextOnImageWidth) { lobFont = new Font(_fontName, _fontSize--, FontStyle.Regular); lintTextOnImageWidth = (int)lobGraphics.MeasureString(textOnImage, lobFont).Width; } }
4

1 回答 1

0

是的,这是可能的,但您必须手动绘制它。

请参考这里开始在图像上绘图。

接下来,探索System.Drawing命名空间,特别是具有绘图方法的Graphics类,也用于上述帖子。

于 2012-05-05T07:43:07.277 回答