1

我目前正在开发地铁应用程序,我需要在图像上写文本。

我找到了这个http://writeablebitmapex.codeplex.com/

但我是 XAML 的新手,并且知道如何专门使用它。所以谁能告诉我如何使用它来在图像上写文字。

正如我在MSDN上问过这个问题,但我还没有回复。

编辑:

如果我使用Muad'Dib ,则会收到如下屏幕截图所示的错误:

在此处输入图像描述

错误是:'Writeable Bitmap Extensions' is ambiguous in the namespace 'System.Windows.Media.Imaging'

4

1 回答 1

0

WriteableBitmapEx的讨论区有一种可能的解决方案

这是该“文章”中的代码:

 public static void DrawText(this WriteableBitmap wBmp,Point at, string text,double fontSize,Color textColor)
    {        
        TextBlock lbl = new TextBlock();
        lbl.Text = text;
        lbl.FontSize = fontSize;
        lbl.Foreground = new SolidColorBrush(textColor);
        WriteableBitmap tBmp = new WriteableBitmap(lbl, null);
        wBmp.Blit(at, tBmp, new Rect(0, 0, tBmp.PixelWidth, tBmp.PixelHeight), Colors.White, System.Windows.Media.Imaging.WriteableBitmapExtensions.BlendMode.Alpha);
    }
于 2012-03-17T19:15:25.330 回答