#region PDFsharp - A .NET library for processing PDF // // Authors: // Stefan Lange // // Copyright (c) 2005-2017 empira Software GmbH, Cologne Area (Germany) // // http://www.pdfsharp.com // http://sourceforge.net/projects/pdfsharp // // Permission is hereby granted, free of charge, to any person obtaining a // copy of this software and associated documentation files (the "Software"), // to deal in the Software without restriction, including without limitation // the rights to use, copy, modify, merge, publish, distribute, sublicense, // and/or sell copies of the Software, and to permit persons to whom the // Software is furnished to do so, subject to the following conditions: // // The above copyright notice and this permission notice shall be included // in all copies or substantial portions of the Software. // // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL // THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER // DEALINGS IN THE SOFTWARE. #endregion using System; using System.Diagnostics; using System.Text; using PdfSharp.Fonts; namespace PdfSharp.Pdf.Advanced { /// /// Represents a PDF font. /// public class PdfFont : PdfDictionary { /// /// Initializes a new instance of the class. /// public PdfFont(PdfDocument document) : base(document) { } internal PdfFontDescriptor FontDescriptor { get { Debug.Assert(_fontDescriptor != null); return _fontDescriptor; } set { _fontDescriptor = value; } } PdfFontDescriptor _fontDescriptor; internal PdfFontEncoding FontEncoding; /// /// Gets a value indicating whether this instance is symbol font. /// public bool IsSymbolFont { get { return _fontDescriptor.IsSymbolFont; } } internal void AddChars(string text) { if (_cmapInfo != null) _cmapInfo.AddChars(text); } internal void AddGlyphIndices(string glyphIndices) { if (_cmapInfo != null) _cmapInfo.AddGlyphIndices(glyphIndices); } /// /// Gets or sets the CMapInfo. /// internal CMapInfo CMapInfo { get { return _cmapInfo; } set { _cmapInfo = value; } } internal CMapInfo _cmapInfo; /// /// Gets or sets ToUnicodeMap. /// internal PdfToUnicodeMap ToUnicodeMap { get { return _toUnicode; } set { _toUnicode = value; } } internal PdfToUnicodeMap _toUnicode; /// /// Adds a tag of exactly six uppercase letters to the font name /// according to PDF Reference Section 5.5.3 'Font Subsets' /// internal static string CreateEmbeddedFontSubsetName(string name) { StringBuilder s = new StringBuilder(64); byte[] bytes = Guid.NewGuid().ToByteArray(); for (int idx = 0; idx < 6; idx++) s.Append((char)('A' + bytes[idx] % 26)); s.Append('+'); if (name.StartsWith("/")) s.Append(name.Substring(1)); else s.Append(name); return s.ToString(); } /// /// Predefined keys common to all font dictionaries. /// public class Keys : KeysBase { /// /// (Required) The type of PDF object that this dictionary describes; /// must be Font for a font dictionary. /// [KeyInfo(KeyType.Name | KeyType.Required, FixedValue = "Font")] public const string Type = "/Type"; /// /// (Required) The type of font. /// [KeyInfo(KeyType.Name | KeyType.Required)] public const string Subtype = "/Subtype"; /// /// (Required) The PostScript name of the font. /// [KeyInfo(KeyType.Name | KeyType.Required)] public const string BaseFont = "/BaseFont"; /// /// (Required except for the standard 14 fonts; must be an indirect reference) /// A font descriptor describing the font’s metrics other than its glyph widths. /// Note: For the standard 14 fonts, the entries FirstChar, LastChar, Widths, and /// FontDescriptor must either all be present or all be absent. Ordinarily, they are /// absent; specifying them enables a standard font to be overridden. /// [KeyInfo(KeyType.Dictionary | KeyType.MustBeIndirect, typeof(PdfFontDescriptor))] public const string FontDescriptor = "/FontDescriptor"; } } }