예제 #1
0
파일: Glyph.cs 프로젝트: jps1974/SaveAsPdf
 /// <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);
     }
 }