示例#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);
     }
 }
示例#2
0
文件: Glyph.cs 项目: nholik/Fo.Net
 /// <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);
     }
 }