עיבוד טקסט באמצעות גופנים

בפוסט הקודם, ראית כיצד להשתמש ב-Aspose.Font for .NET API לטעינה ושמירת CFF, TrueType ו-Type1 גופנים באופן תוכנתי. במאמר זה תלמדו כיצד לעבד טקסט עם TrueType וגופן Type1 באמצעות C#. דוגמאות הקוד יראו לך כיצד ליצור תמונה JPG על סמך הטקסט שסופק.

.NET Font Rendering API - התקנה

Aspose.Font for .NET מספק מנגנון עיבוד גופנים רב עוצמה על מנת לרנדר את הטקסט באמצעות גופני TrueType ו-Type1. אתה יכול להוריד את ה-API או להתקין אותו באמצעות NuGet.

PM> Install-Package Aspose.Font

הטמעת ממשק עיבוד טקסט

על מנת להשיג את עיבוד הטקסט, Aspose.Font עבור .NET מספק ממשק IGlyphOutlinePainter לציור הגליפים. השלבים הבאים מדגימים כיצד ליישם את השיטות ב-IGlyphOutlinePainter.

  • הטמע את שיטות הממשק של IGlyphOutlinePainter באמצעות מחלקה GlyphOutlinePainter הדורשת אובייקט מסוג System.Drawing.Drawing2D.GraphicsPath לציור גרפיקה.
// לדוגמאות מלאות וקבצי נתונים, נא עבור אל https://github.com/aspose-font/Aspose.Font-for-.NET
class GlyphOutlinePainter : IGlyphOutlinePainter
{
    private System.Drawing.Drawing2D.GraphicsPath _path;
    private System.Drawing.PointF _currentPoint;

    public GlyphOutlinePainter(System.Drawing.Drawing2D.GraphicsPath path)
    {
        _path = path;
    }

    public void MoveTo(MoveTo moveTo)
    {
        _path.CloseFigure();
        _currentPoint.X = (float)moveTo.X;
        _currentPoint.Y = (float)moveTo.Y;
    }

    public void LineTo(LineTo lineTo)
    {
        float x = (float)lineTo.X;
        float y = (float)lineTo.Y;
        _path.AddLine(_currentPoint.X, _currentPoint.Y, x, y);
        _currentPoint.X = x;
        _currentPoint.Y = y;
    }

    public void CurveTo(CurveTo curveTo)
    {
        float x3 = (float)curveTo.X3;
        float y3 = (float)curveTo.Y3;

        _path.AddBezier(
                  _currentPoint.X,
                  _currentPoint.Y,
                  (float)curveTo.X1,
                  (float)curveTo.Y1,
                  (float)curveTo.X2,
                  (float)curveTo.Y2,
                  x3,
                  y3);

        _currentPoint.X = x3;
        _currentPoint.Y = y3;
    }

    public void ClosePath()
    {
        _path.CloseFigure();
    }
}
  • צור שיטה חדשה DrawText() כדי לצייר את הטקסט לאובייקט System.Drawing.Bitmap.
// לדוגמאות מלאות וקבצי נתונים, נא עבור אל https://github.com/aspose-font/Aspose.Font-for-.NET
static void DrawText(string text, IFont font, double fontSize,
            Brush backgroundBrush, Brush textBrush, string outFile)
{
    //קבל מזהי גליפים עבור כל סמל בשורת הטקסט
    GlyphId[] gids = new GlyphId[text.Length];
   for (int i = 0; i < text.Length; i++)
        gids[i] = font.Encoding.DecodeToGid(text[i]);
    // הגדר הגדרות ציור נפוצות
    double dpi = 300;

    double resolutionCorrection = dpi / 72; // 72 is font's internal dpi
    // להכין מפת סיביות של פלט
    Bitmap outBitmap = new Bitmap(960, 720);
    outBitmap.SetResolution((float)dpi, (float)dpi);
    Graphics outGraphics = Graphics.FromImage(outBitmap);
    outGraphics.FillRectangle(backgroundBrush, 0, 0, outBitmap.Width, outBitmap.Height);
    outGraphics.SmoothingMode = SmoothingMode.HighQuality;
    //להכריז על משתני קואורדינטות וגיד קודם
    GlyphId previousGid = null;
    double glyphXCoordinate = 0;
    double glyphYCoordinate = fontSize * resolutionCorrection;
    //לולאה שצובעת כל גליף ב-gids
    foreach (GlyphId gid in gids)
    {
        // אם הגופן מכיל את ה-gid
        if (gid != null)
        {
            Glyph glyph = font.GlyphAccessor.GetGlyphById(gid);
            if (glyph == null)
                continue;

            // נתיב שמקבל הוראות ציור
            GraphicsPath path = new GraphicsPath();

            // צור יישום IGlyphOutlinePainter
            GlyphOutlinePainter outlinePainter = new GlyphOutlinePainter(path);

            // צור את המעבד
            Aspose.Font.Renderers.IGlyphRenderer renderer = new
                Aspose.Font.Renderers.GlyphOutlineRenderer(outlinePainter);

            // לקבל מאפייני גליפים נפוצים
            double kerning = 0;

            // לקבל ערך ליבה
            if (previousGid != null)
            {
                kerning = (font.Metrics.GetKerningValue(previousGid, gid) /
                           glyph.SourceResolution) * fontSize * resolutionCorrection;
                kerning += FontWidthToImageWith(font.Metrics.GetGlyphWidth(previousGid),
                        glyph.SourceResolution, fontSize);
            }

            // מיקום גליף - הגדל את קואורדינטת הגליף X בהתאם למרחק הגרעין
            glyphXCoordinate += kerning;

            // מטריצת מיקום גליפים
            TransformationMatrix glyphMatrix =
                new TransformationMatrix(
                    new double[]
                            {
                                    fontSize*resolutionCorrection,
                                    0,
                                    0,
                                // שלילי בגלל מערכת הקואורדינטות של מפת סיביות מתחילה מלמעלה
                                    - fontSize*resolutionCorrection,
                                    glyphXCoordinate,
                                    glyphYCoordinate
                            });

            // עיבוד גליף נוכחי
            renderer.RenderGlyph(font, gid, glyphMatrix);
            // למלא את השביל
            path.FillMode = FillMode.Winding;
            outGraphics.FillPath(textBrush, path);
        }
        //הגדר את ה-GID הנוכחי כקודם כדי לקבל את הגליף הנכון עבור הגליף הבא
        previousGid = gid;
    }
    //שמור תוצאות
    outBitmap.Save(outFile);
}
  • הגדר שיטת עזר לחישוב רוחב הגופן בהתאם לרוחב התמונה.
// לדוגמאות מלאות וקבצי נתונים, נא עבור אל https://github.com/aspose-font/Aspose.Font-for-.NET
static double FontWidthToImageWith(double width, int fontSourceResulution, double fontSize, double dpi = 300)
{
    double resolutionCorrection = dpi / 72; // 72 is font's internal dpi
    return (width / fontSourceResulution) * fontSize * resolutionCorrection;
}

עיבוד טקסט עם גופן TrueType באמצעות C#

דוגמת הקוד הבאה מראה כיצד להשתמש ביישום המוזכר לעיל לעיבוד טקסט עם גופן TrueType באמצעות C#.

// לדוגמאות מלאות וקבצי נתונים, נא עבור אל https://github.com/aspose-font/Aspose.Font-for-.NET
string dataDir = RunExamples.GetDataDir_Data();

string fileName1 = dataDir + "Montserrat-Bold.ttf"; //Font file name with full path
FontDefinition fd1 = new FontDefinition(FontType.TTF, new FontFileDefinition("ttf", new FileSystemStreamSource(fileName1)));
TtfFont ttfFont1 = Aspose.Font.Font.Open(fd1) as TtfFont;
            
string fileName2 = dataDir + "Lora-Bold.ttf"; //Font file name with full path
FontDefinition fd2 = new FontDefinition(FontType.TTF, new FontFileDefinition("ttf", new FileSystemStreamSource(fileName2)));
TtfFont ttfFont2 = Aspose.Font.Font.Open(fd2) as TtfFont;

DrawText("Hello world", ttfFont1, 14, Brushes.White, Brushes.Black, dataDir + "hello1_montserrat_out.jpg");
DrawText("Hello world", ttfFont2, 14, Brushes.Yellow, Brushes.Red, dataDir + "hello2_lora_out.jpg");

עיבוד טקסט עם גופן Type1 באמצעות C#

דוגמת הקוד הבאה מראה כיצד לעבד טקסט עם גופן Type1 באמצעות C#.

// לדוגמאות מלאות וקבצי נתונים, נא עבור אל https://github.com/aspose-font/Aspose.Font-for-.NET
string fileName = dataDir + "courier.pfb"; //Font file name with full path

FontDefinition fd = new FontDefinition(FontType.Type1, new FontFileDefinition("pfb", new FileSystemStreamSource(fileName)));
Type1Font font = Aspose.Font.Font.Open(fd) as Type1Font;
            

DrawText("Hello world", font, 14, Brushes.White, Brushes.Black, dataDir + "hello1_type1_out.jpg");
DrawText("Hello world", font, 14, Brushes.Yellow, Brushes.Red, dataDir + "hello2_type1_out.jpg");

סיכום

במאמר זה, למדת כיצד ליישם עיבוד טקסט עם גופן TrueType או Type1 באמצעות C#. דוגמאות הקוד הראו כיצד ליצור תמונות JPG על סמך הטקסט שסופק. אתה יכול לחקור עוד על Aspose.Font for .NET באמצעות תיעוד.

ראה גם