WPF : Glyph right-to-left text rendering

核能气质少年 提交于 2020-02-02 06:17:47

问题


I want to use Glyph to render right-to-left languages text (e.g. Arabic or mix English and Arabic).

I'm using this code:

    Typeface typeface = new Typeface(new FontFamily("Arial"),
                      FontStyles.Italic,
                      FontWeights.Normal,
                      FontStretches.Normal);

       GlyphTypeface glyphTypeface;
       if (!typeface.TryGetGlyphTypeface(out glyphTypeface))
           throw new InvalidOperationException("No glyphtypeface found");

       string text = "Hello  ,  سلام";
       double size = 40;

       ushort[] glyphIndexes = new ushort[text.Length];
       double[] advanceWidths = new double[text.Length];

       double totalWidth = 0;

       for (int n = 0; n < text.Length; n++)
       {
           ushort glyphIndex = glyphTypeface.CharacterToGlyphMap[text[n]];
           glyphIndexes[n] = glyphIndex;

           double width = glyphTypeface.AdvanceWidths[glyphIndex] * size;
           advanceWidths[n] = width;

           totalWidth += width;
       }

       Point origin = new Point(50, 50);

       GlyphRun glyphRun = new GlyphRun(glyphTypeface, 0, false, size,
           glyphIndexes, origin, advanceWidths, null, null, null, null,
           null, null);

       dc.DrawGlyphRun(Brushes.Black, glyphRun);

But the problem is that Arabic characters are shown separately, like this:

 Hello  ,  س ل ا م

please guide me

------------------------------------------------------

UPDATE:

This is result of Obfuscate's solution:

The problem is that the Arabic letters are rendered separately.

But this is what I want:


回答1:


Try formatting two strings with different CultureInfo

string x = string.Format(new CultureInfo("en-US"), "{0}" ,text1);
string y = string.Format(new CultureInfo("ar-SA"), "{0}", text2);

Updated with solution... The xaml has a Canvas.

<Window x:Class="StackOverflowCS.MainWindow"
        Title="MainWindow" Height="600" Width="800">
    <Grid>
        <Canvas Name="MyCanvas" Height="600"  Width="800"/>
    </Grid>
</Window>

The MainWindow (WPF)

   public partial class MainWindow : Window
    {
        public MainWindow()
        {
            InitializeComponent();

            Size s = new Size(200,50);
            GlyphElement gex = new GlyphElement(
               string.Format(new CultureInfo("en-US"), "{0}", "Hello"), Brushes.Red, s);
            MyCanvas.Children.Add(gex);
            Canvas.SetTop(gex, 10);
            Canvas.SetLeft(gex, 10);

            GlyphElement gey = new GlyphElement(
               string.Format(new CultureInfo("ar-SA"), "{0}", "سلام"), Brushes.Black, s);
            MyCanvas.Children.Add(gey);
            Canvas.SetTop(gey, 100);
            Canvas.SetLeft(gey, 10);
        }
    }

Wrap the GlyphElement in a FrameworkElement

    class GlyphElement : FrameworkElement
    {
        private GlyphRunner gr;
        public GlyphElement(string text, Brush br, Size size) { gr = new GlyphRunner(text, br, size); }
        protected override Visual GetVisualChild(int index) { return gr; }
        protected override int VisualChildrenCount { get { return 1; } }
    }

Wrap the GlyphRunner in a DrawingVisual

    public class GlyphRunner : DrawingVisual
    {
        public GlyphRunner(string text, Brush bc, Size size)
        {
            DrawingImage di = CreateGlyph(text, new Point(0, 0), bc);
            using (DrawingContext dc = RenderOpen())
            {
                dc.DrawImage(di,new Rect(size));
            }
        }

        // small updates to your code follow     
        public DrawingImage CreateGlyph(string text, Point origin, Brush bc)
        {
            Typeface typeface = new Typeface(new FontFamily("Arial"),
                                 FontStyles.Normal,
                                 FontWeights.Normal,
                                 FontStretches.Normal);

            GlyphTypeface glyphTypeface;
            if (!typeface.TryGetGlyphTypeface(out glyphTypeface))
                throw new InvalidOperationException("No glyphtypeface found");

            ushort[] glyphIndexes = new ushort[text.Length];
            double[] advanceWidths = new double[text.Length];

            double totalWidth = 0;

            for (int n = 0; n < text.Length; n++)
            {
                ushort glyphIndex = glyphTypeface.CharacterToGlyphMap[text[n]];
                glyphIndexes[n] = glyphIndex;

                double width = glyphTypeface.AdvanceWidths[glyphIndex];
                advanceWidths[n] = width;

                totalWidth += width;
            }

            float ppd = (float)VisualTreeHelper.GetDpi(this).PixelsPerDip;
            GlyphRun gr =  new GlyphRun(glyphTypeface, 0, false, 1.0, ppd, glyphIndexes, origin, advanceWidths, null, null, null, null, null, null);
            GlyphRunDrawing glyphRunDrawing = new GlyphRunDrawing(bc, gr);
            return new DrawingImage(glyphRunDrawing);
        }

    }


来源:https://stackoverflow.com/questions/47490542/wpf-glyph-right-to-left-text-rendering

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!