TrueTypeHinting.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 use TrueType font hinting instructions.
  17. //
  18. // Many TrueType fonts include low-level hinting instructions.
  19. // The original purpose of introducing hinting instructions was
  20. // to improve the look of glyphs when the font size is comparable
  21. // to the device resolution. But such instructions are now also used
  22. // (especially in CJK fonts) to reuse some glyph parts in different
  23. // glyphs regardless of the font size.
  24. // GcGraphics supports hinting instructions. To enable it, set
  25. // TextFormat.EnableFontHinting property to true when rendering text.
  26. //
  27. // This sample renders a Latin text in a small size with hinting off and on,
  28. // and then renders a CJK text also with hinting off and on.
  29. public class TrueTypeHinting
  30. {
  31. public GcBitmap GenerateImage(Size pixelSize, float dpi, bool opaque, string[] sampleParams = null)
  32. {
  33. var bmp = new GcBitmap(pixelSize.Width, pixelSize.Height, true, dpi, dpi);
  34. var dy = dpi / 2;
  35. var ip = new PointF(dpi, dpi);
  36. using (var g = bmp.CreateGraphics(Color.White))
  37. {
  38. // Turning anti-aliasing off makes the hinting effect on small text more obvious:
  39. g.Renderer.Aliased = true;
  40.  
  41. var sOff = "Hinting OFF: ";
  42. var sOn = "Hinting ON: ";
  43.  
  44. // Draw a Latin string with hinting instructions off and on:
  45. var sLat = "The quick brown fox jumps over the lazy dog.";
  46.  
  47. var tfLat = new TextFormat()
  48. {
  49. Font = GCTEXT.Font.FromFile(Path.Combine("Resources", "Fonts", "arial.ttf")),
  50. FontSize = 12,
  51. FontName = "Arial",
  52. EnableFontHinting = false
  53. };
  54. g.DrawString(sOff + sLat, tfLat, ip);
  55. ip.Y += dy;
  56.  
  57. tfLat.FontSize = 10;
  58. g.DrawString(sOff + sLat, tfLat, ip);
  59. ip.Y += dy * 2;
  60.  
  61. tfLat.EnableFontHinting = true;
  62. tfLat.FontSize = 12;
  63. g.DrawString(sOn + sLat, tfLat, ip);
  64. ip.Y += dy;
  65.  
  66. tfLat.FontSize = 10;
  67. g.DrawString(sOn + sLat, tfLat, ip);
  68. ip.Y += dy * 2;
  69.  
  70. // Draw a CJK string with hinting instructions off and on:
  71. // "Best year in spring, best day in morning":
  72. string sCJK = @"一年之计在于春,一日之计在于晨";
  73.  
  74. // For CJK text, we can turn anti-aliasing on as the effect of
  75. // hinting is obvious in the characters' form itself:
  76. g.Renderer.Aliased = false;
  77.  
  78. var tfCJK = new TextFormat()
  79. {
  80. Font = GCTEXT.Font.FromFile(Path.Combine("Resources", "Fonts", "kaiu.ttf")),
  81. FontSize = 30,
  82. EnableFontHinting = false
  83. };
  84. g.DrawString(sOff + "\n" + sCJK, tfCJK, ip);
  85. ip.Y += dy * 3;
  86.  
  87. tfCJK.EnableFontHinting = true;
  88. g.DrawString(sOn + "\n" + sCJK, tfCJK, ip);
  89. }
  90. // Done:
  91. return bmp;
  92. }
  93. }
  94. }
  95.