TextColumns.cs
  1. //
  2. // This code is part of Document Solutions for Imaging demos.
  3. // Copyright (c) MESCIUS inc. All rights reserved.
  4. //
  5. using System;
  6. using System.IO;
  7. using System.Drawing;
  8. using System.Collections.Generic;
  9. using System.Linq;
  10. using GrapeCity.Documents.Drawing;
  11. using GrapeCity.Documents.Text;
  12. using GrapeCity.Documents.Imaging;
  13. using GCTEXT = GrapeCity.Documents.Text;
  14. using GCDRAW = GrapeCity.Documents.Drawing;
  15.  
  16. namespace DsImagingWeb.Demos
  17. {
  18. // This sample shows how to draw multi-column text on a GcBitmap.
  19. public class TextColumns
  20. {
  21. public GcBitmap GenerateImage(Size pixelSize, float dpi, bool opaque, string[] sampleParams = null)
  22. {
  23. var bmp = new GcBitmap(pixelSize.Width, pixelSize.Height, true, dpi, dpi);
  24. using (var g = bmp.CreateGraphics(Color.White))
  25. {
  26. g.Renderer.Multithreaded = true;
  27. g.Renderer.SlowAntialiasing = true;
  28.  
  29. var tl = g.CreateTextLayout();
  30. tl.DefaultFormat.Font = GCTEXT.Font.FromFile(Path.Combine("Resources", "Fonts", "times.ttf"));
  31.  
  32. tl.DefaultFormat.FontSize = 12;
  33. tl.TextAlignment = TextAlignment.Justified;
  34. tl.FirstLineIndent = 96 / 2;
  35. tl.ParagraphSpacing = 96 / 8;
  36.  
  37. // Add some text (note that TextLayout interprets "\r\n", "\r" and "\n" as paragraph delimiters):
  38. tl.Append(Common.Util.LoremIpsum(20));
  39. // Set up columns:
  40. const int colCount = 3;
  41. const float margin = 96 / 2; // 1/2" margins all around
  42. const float colGap = margin / 2; // 1/4" gap between columns
  43. float colWidth = (bmp.Width - margin * 2 - colGap * (colCount - 1)) / colCount;
  44. tl.MaxWidth = colWidth;
  45. tl.MaxHeight = bmp.Height - margin * 2;
  46. // Calculate glyphs and perform layout for the whole text:
  47. tl.PerformLayout(true);
  48.  
  49. // In a loop, split and render the text in the current column:
  50. int col = 0;
  51. while (true)
  52. {
  53. // The TextLayout that will hold the rest of the text which did not fit in the current layout:
  54. var tso = new TextSplitOptions(tl)
  55. {
  56. MinLinesInLastParagraph = 2,
  57. MinLinesInFirstParagraph = 2
  58. };
  59. var splitResult = tl.Split(tso, out TextLayout rest);
  60. g.DrawTextLayout(tl, new PointF(margin + col * (colWidth + colGap), margin));
  61. if (splitResult != SplitResult.Split)
  62. break;
  63. tl = rest;
  64. if (++col == colCount)
  65. break;
  66. }
  67. }
  68. return bmp;
  69. }
  70. }
  71. }
  72.