Exemple #1
0
 /// <summary>
 ///     Writes a glyph description to the supplied stream.
 /// </summary>
 /// <param name="stream"></param>
 public void Write(FontFileStream stream)
 {
     if (glyphData != null && glyphData.Length > 0)
     {
         stream.Write(glyphData, 0, glyphData.Length);
     }
 }
Exemple #2
0
 /// <summary>
 ///     Writes a glyph description to the supplied stream.
 /// </summary>
 /// <param name="stream"></param>
 public void Write(FontFileStream stream) {
     if (glyphData != null && glyphData.Length > 0) {
         stream.Write(glyphData, 0, glyphData.Length);
     }
 }