TextTrimming.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 GrapeCity.Documents.Imaging;
  9. using GrapeCity.Documents.Text;
  10. using GrapeCity.Documents.Drawing;
  11. using GCTEXT = GrapeCity.Documents.Text;
  12. using GCDRAW = GrapeCity.Documents.Drawing;
  13.  
  14. namespace DsImagingWeb.Demos
  15. {
  16. // This sample demonstrates how to display ellipsis
  17. // if a string does not fit in the allocated space.
  18. public class TextTrimming
  19. {
  20. public GcBitmap GenerateImage(Size pixelSize, float dpi, bool opaque, string[] sampleParams = null)
  21. {
  22. var bmp = new GcBitmap(pixelSize.Width, pixelSize.Height, true, dpi, dpi);
  23. var Inch = dpi;
  24. const float fontSize = 12;
  25. using (var g = bmp.CreateGraphics(Color.White))
  26. {
  27. var str = "This is a long line of text which does not fit in the allocated space.";
  28. var wid = Inch * 4;
  29. var dy = 0.3f;
  30.  
  31. var rc = Common.Util.AddNote(
  32. "TextLayout allows displaying ellipsis (or other character) " +
  33. "at the end of a text line that did not fit in the allocated space.\n" +
  34. "To use trimming, set TrimmingGranularity to Character or Word " +
  35. "(the default is None). Trimming will kick in if WrapMode is NoWrap, " +
  36. "and the text is too long. Wrapped text may also display trimming if " +
  37. "the layout width is too narrow to fit a single word.\n" +
  38. "Below are examples of text untrimmed, trimmed to character and to word. " +
  39. "The next line demonstrates a different trimming character (tilde in this case). " +
  40. "Finally, the last line shows how to trim text (respecting TrimmingGranularity) " +
  41. "without adding any trimming character.",
  42. g);
  43. var top = rc.Bottom + 36;
  44.  
  45. var ip = new PointF(rc.Left, top);
  46.  
  47. var tl = g.CreateTextLayout();
  48. tl.DefaultFormat.Font = GCTEXT.Font.FromFile(Path.Combine("Resources", "Fonts", "times.ttf"));
  49. tl.DefaultFormat.FontSize = fontSize;
  50. tl.MaxWidth = wid;
  51. tl.WrapMode = WrapMode.NoWrap;
  52.  
  53. // TrimmingGranularity is None by default:
  54. tl.Append(str);
  55. tl.PerformLayout(true);
  56. g.DrawTextLayout(tl, ip);
  57. ip.Y += tl.ContentHeight + dy;
  58.  
  59. // Character trimming:
  60. tl.TrimmingGranularity = TrimmingGranularity.Character;
  61. // NOTE that the recalculateGlyphsBeforeLayout parameter to PerformLayout
  62. // may be false after the first call, as the text/font has not changed:
  63. tl.PerformLayout(false);
  64. g.DrawTextLayout(tl, ip);
  65. ip.Y += tl.ContentHeight + dy;
  66.  
  67. // Word trimming:
  68. tl.TrimmingGranularity = TrimmingGranularity.Word;
  69. tl.PerformLayout(false);
  70. g.DrawTextLayout(tl, ip);
  71. ip.Y += tl.ContentHeight + dy;
  72.  
  73. // tl.EllipsisCharCode is HorizontalEllipsis (0x2026) by default.
  74. // Change it to a tilde:
  75. tl.EllipsisCharCode = 0x007E;
  76. tl.PerformLayout(false);
  77. g.DrawTextLayout(tl, ip);
  78. ip.Y += tl.ContentHeight + dy;
  79.  
  80. // Finally, we may set tl.EllipsisCharCode to 0 to trim text
  81. // without rendering any trimming character:
  82. tl.EllipsisCharCode = 0;
  83. tl.PerformLayout(false);
  84. g.DrawTextLayout(tl, ip);
  85. ip.Y += tl.ContentHeight + dy;
  86.  
  87. g.DrawRectangle(new RectangleF(rc.Left, top, wid, ip.Y - top), Color.OrangeRed);
  88.  
  89. // Draw border around the whole image:
  90. g.DrawRectangle(new RectangleF(0, 0, bmp.Width, bmp.Height), Color.DarkSlateBlue, 4);
  91. }
  92. // Done:
  93. return bmp;
  94. }
  95. }
  96. }
  97.