#region MIT License /*Copyright (c) 2012-2013, 2016 Robert Rouhani SharpFont based on Tao.FreeType, Copyright (c) 2003-2007 Tao Framework Team 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.Linq; using System.Runtime.InteropServices; using SharpFont.PostScript.Internal; namespace SharpFont.PostScript { /// /// A structure used to represent CID Face information. /// public class FaceInfo { #region Fields private IntPtr reference; private FaceInfoRec rec; #endregion #region Constructors internal FaceInfo(IntPtr reference) { Reference = reference; } #endregion #region Properties /// /// The name of the font, usually condensed from FullName. /// public string CidFontName { get { return rec.cid_font_name; } } /// /// The version number of the font. /// public int CidVersion { get { return (int)rec.cid_version; } } /// /// Gets the string identifying the font's manufacturer. /// public string Registry { get { return rec.registry; } } /// /// Gets the unique identifier for the character collection. /// public string Ordering { get { return rec.ordering; } } /// /// Gets the identifier (supplement number) of the character collection. /// public int Supplement { get { return rec.supplement; } } /// /// Gets the dictionary of font info that is not used by the PostScript interpreter. /// public FontInfo FontInfo { get { return new FontInfo(rec.font_info); } } /// /// Gets the coordinates of the corners of the bounding box. /// public BBox FontBBox { get { return rec.font_bbox; } } /// /// Gets the value to form UniqueID entries for base fonts within a composite font. /// [CLSCompliant(false)] public uint UidBase { get { return (uint)rec.uid_base; } } /// /// Gets the number of entries in the XUID array. /// public int XuidCount { get { return rec.num_xuid; } } /// /// Gets the extended unique IDS that identify the form, which allows /// the PostScript interpreter to cache the output for reuse. /// [CLSCompliant(false)] public uint[] Xuid { get { return rec.xuid.Select(x => (uint)x).ToArray(); } } /// /// Gets the offset in bytes to the charstring offset table. /// [CLSCompliant(false)] public uint CidMapOffset { get { return (uint)rec.cidmap_offset; } } /// /// Gets the length in bytes of the FDArray index. /// A value of 0 indicates that the charstring offset table doesn't contain /// any FDArray indexes. /// public int FDBytes { get { return rec.fd_bytes; } } /// /// Gets the length of the offset to the charstring for each CID in the CID font. /// public int GDBytes { get { return rec.gd_bytes; } } /// /// Gets the number of valid CIDs in the CIDFont. /// [CLSCompliant(false)] public uint CidCount { get { return (uint)rec.cid_count; } } /// /// Gets the number of entries in the FontDicts array. /// public int DictsCount { get { return rec.num_dicts; } } /// /// Gets the set of font dictionaries for this font. /// public FaceDict FontDicts { get { return new FaceDict(PInvokeHelper.AbsoluteOffsetOf(Reference, "font_dicts")); } } /// /// The offset of the data. /// [CLSCompliant(false)] public uint DataOffset { get { return (uint)rec.data_offset; } } internal IntPtr Reference { get { return reference; } set { reference = value; rec = PInvokeHelper.PtrToStructure(reference); } } #endregion } }