ArabicText.vb
  1. ''
  2. '' This code is part of Document Solutions for Imaging demos.
  3. '' Copyright (c) MESCIUS inc. All rights reserved.
  4. ''
  5. Imports System.IO
  6. Imports System.Drawing
  7. Imports System.Numerics
  8. Imports GrapeCity.Documents.Drawing
  9. Imports GrapeCity.Documents.Text
  10. Imports GrapeCity.Documents.Imaging
  11. Imports GCTEXT = GrapeCity.Documents.Text
  12. Imports GCDRAW = GrapeCity.Documents.Drawing
  13.  
  14. '' This sample shows how to draw Arabic text on a GcBitmap.
  15. Public Class ArabicText
  16. Function GenerateImage(
  17. ByVal pixelSize As Size,
  18. ByVal dpi As Single,
  19. ByVal opaque As Boolean,
  20. Optional ByVal sampleParams As String() = Nothing) As GcBitmap
  21.  
  22. Dim Text = "العربية أكبر لغات المجموعة السامية من حيث عدد المتحدثين، وإحدى أكثر اللغات انتشارًا في العالم، يتحدثها أكثر من 422 مليون نسمة،1 ويتوزع متحدثوها في المنطقة المعروفة باسم الوطن العربي، بالإضافة إلى العديد من المناطق الأخرى المجاورة كالأحواز وتركيا وتشاد ومالي والسنغالوارتيرياوللغة العربية أهمية قصوى لدى أتباع الديانة الإسلامية، فهي لغة مصدري التشريع الأساسيين في الإسلام: القرآن، والأحاديث النبوية المروية عن النبي محمد، ولا تتم الصلاة في الإسلام (وعبادات أخرى) إلا بإتقان بعض من كلمات هذه اللغة. والعربية هي أيضًا لغة طقسية رئيسية لدى عدد من الكنائس المسيحية في العالم العربي، كما كتبت بها الكثير من أهم الأعمال الدينية والفكرية اليهودية في العصور الوسطى. وأثّر انتشار الإسلام، وتأسيسه دولًا، أرتفعت مكانة اللغة العربية، وأصبحت لغة السياسة والعلم والأدب لقرون طويلة في الأراضي التي حكمها المسلمون، وأثرت العربية، تأثيرًا مباشرًا أو غير مباشر على كثير من اللغات الأخرى في العالم الإسلامي، كالتركية والفارسية والأرديةوالالبانية واللغات الأفريقية الاخرى واللغات الأوروبية مثل الروسية والإنجليزية والفرنسية والأسبانية والايطالية والألمانية.كما انها تدرس بشكل رسمى او غير رسمى في الدول الاسلامية والدول الأفريقية المحادية للوطن العربى."
  23. Dim ia = New ImageAlign(ImageAlignHorz.Left, ImageAlignVert.Top, True, True, False, False, False)
  24.  
  25. Dim bmp = New GcBitmap(pixelSize.Width, pixelSize.Height, True, dpi, dpi)
  26. Using g = bmp.CreateGraphics(Color.White)
  27. g.Renderer.Multithreaded = True
  28.  
  29. Dim tl = g.CreateTextLayout()
  30. tl.FirstLineIndent = 18
  31. tl.ParagraphSpacing = 6
  32. tl.TextAlignment = TextAlignment.Justified
  33. tl.RightToLeft = True
  34.  
  35. Dim tf = New TextFormat() With
  36. {
  37. .Font = GCTEXT.Font.FromFile(Path.Combine("Resources", "Fonts", "times.ttf")),
  38. .FontSize = 14
  39. }
  40.  
  41. '' Repeat test text to fill a few columns
  42. For i = 0 To 3
  43. tl.Append(Text, tf)
  44. tl.AppendLine()
  45. Next
  46.  
  47. '' Layout text in 3 columns
  48. '' (The logic/code in this sample Is identical to JapaneseColumns
  49. Const NCOLS = 3
  50. Dim margin = 48.0F
  51. Dim gap = 24.0F
  52. Dim colWid = (bmp.Width - margin * 2 - gap * (NCOLS - 1)) / NCOLS
  53. tl.MaxWidth = bmp.Width
  54. tl.MaxHeight = bmp.Height
  55. tl.MarginTop = margin
  56. tl.MarginBottom = margin
  57. tl.MarginRight = margin
  58. tl.MarginLeft = margin + (colWid + gap) * (NCOLS - 1)
  59. '' We can specify arbitrary rectangles for the text to flow around.
  60. '' In this case, we add 3 areas to draw some images:
  61. Dim rect1 = New ObjectRect(bmp.Width - margin - 315, margin, 320, 320)
  62. Dim rect2 = New ObjectRect(margin + 133, margin + 80, 177, 133)
  63. Dim rect3 = New ObjectRect(margin, bmp.Height - margin - 400, 400, 385)
  64. tl.ObjectRects = New List(Of ObjectRect)() From {rect1, rect2, rect3}
  65.  
  66. '' THE call: it calculates the glyphs needed To draw the text, And lays it out:
  67. tl.PerformLayout(True)
  68.  
  69. For col = 0 To NCOLS - 1
  70. Dim nextcol = If(col < NCOLS - 1, col + 1, 0)
  71. '' TextSplitOptions tell TextLayout.Split() how to layout the remaining text.
  72. '' In this case we advance from column to column by updating top And bottom margins:
  73. Dim tso = New TextSplitOptions(tl) With
  74. {
  75. .RestMarginRight = margin + (colWid + gap) * nextcol,
  76. .RestMarginLeft = margin + (colWid + gap) * (NCOLS - 1 - nextcol)
  77. }
  78. Dim rest As TextLayout = Nothing
  79. Dim split = tl.Split(tso, rest)
  80. g.DrawTextLayout(tl, PointF.Empty)
  81. If (split <> SplitResult.Split) Then
  82. Exit For
  83. End If
  84. tl = rest
  85. Next
  86.  
  87. rect1.Height -= 5
  88. rect2.Left += 10
  89. rect3.Width -= 10
  90.  
  91. Using img = Util.ImageFromFile(Path.Combine("Resources", "Images", "reds.jpg"))
  92. g.DrawImage(img, rect1.ToRectangleF(), Nothing, ia)
  93. End Using
  94. Using img = Util.ImageFromFile(Path.Combine("Resources", "Images", "firth.jpg"))
  95. g.DrawImage(img, rect2.ToRectangleF(), Nothing, ia)
  96. End Using
  97. Using img = Util.ImageFromFile(Path.Combine("Resources", "Images", "purples.jpg"))
  98. g.DrawImage(img, rect3.ToRectangleF(), Nothing, ia)
  99. End Using
  100.  
  101. '' Draw border around the whole image
  102. g.DrawRectangle(New RectangleF(0, 0, bmp.Width, bmp.Height), Color.DarkSlateBlue, 4)
  103. End Using
  104. Return bmp
  105. End Function
  106. End Class
  107.