FontInfo.cs 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145
  1. #region MIT License
  2. /*Copyright (c) 2012 Robert Rouhani <robert.rouhani@gmail.com>
  3. SharpFont based on Tao.FreeType, Copyright (c) 2003-2007 Tao Framework Team
  4. Permission is hereby granted, free of charge, to any person obtaining a copy of
  5. this software and associated documentation files (the "Software"), to deal in
  6. the Software without restriction, including without limitation the rights to
  7. use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
  8. of the Software, and to permit persons to whom the Software is furnished to do
  9. so, subject to the following conditions:
  10. The above copyright notice and this permission notice shall be included in all
  11. copies or substantial portions of the Software.
  12. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  13. IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  14. FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  15. AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  16. LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  17. OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
  18. SOFTWARE.*/
  19. #endregion
  20. using System;
  21. using System.Runtime.InteropServices;
  22. using SharpFont.PostScript.Internal;
  23. namespace SharpFont.PostScript
  24. {
  25. /// <summary>
  26. /// A structure used to model a Type 1 or Type 2 FontInfo dictionary. Note that for Multiple Master fonts, each
  27. /// instance has its own FontInfo dictionary.
  28. /// </summary>
  29. public class FontInfo
  30. {
  31. #region Fields
  32. private IntPtr reference;
  33. private FontInfoRec rec;
  34. #endregion
  35. #region Constructors
  36. internal FontInfo(IntPtr reference)
  37. {
  38. Reference = reference;
  39. }
  40. #endregion
  41. #region Properties
  42. public string Version
  43. {
  44. get
  45. {
  46. return rec.version;
  47. }
  48. }
  49. public string Notice
  50. {
  51. get
  52. {
  53. return rec.notice;
  54. }
  55. }
  56. public string FullName
  57. {
  58. get
  59. {
  60. return rec.full_name;
  61. }
  62. }
  63. public string FamilyName
  64. {
  65. get
  66. {
  67. return rec.family_name;
  68. }
  69. }
  70. public string Weight
  71. {
  72. get
  73. {
  74. return rec.weight;
  75. }
  76. }
  77. public int ItalicAngle
  78. {
  79. get
  80. {
  81. return (int)rec.italic_angle;
  82. }
  83. }
  84. public bool IsFixedPitch
  85. {
  86. get
  87. {
  88. return rec.is_fixed_pitch == 1;
  89. }
  90. }
  91. public short UnderlinePosition
  92. {
  93. get
  94. {
  95. return rec.underline_position;
  96. }
  97. }
  98. [CLSCompliant(false)]
  99. public ushort UnderlineThickness
  100. {
  101. get
  102. {
  103. return rec.underline_thickness;
  104. }
  105. }
  106. internal IntPtr Reference
  107. {
  108. get
  109. {
  110. return reference;
  111. }
  112. set
  113. {
  114. reference = value;
  115. rec = PInvokeHelper.PtrToStructure<FontInfoRec>(reference);
  116. }
  117. }
  118. #endregion
  119. }
  120. }