AddImage() 공개 메소드

public AddImage ( string ImagePath ) : void
ImagePath string
리턴 void
예제 #1
0
 public void AddGlyph(string Unicode, string ImagePath)
 {
     Glyph G = new Glyph();
     G.FontID = this.ID;
     G.Unicode = Unicode;
     G.Save(false);
     G.AddImage(ImagePath);
     Glyphs.Add(G);
 }
예제 #2
0
        public void AddGlyph(string Unicode, string ImagePath)
        {
            Glyph G = new Glyph();

            G.FontID  = this.ID;
            G.Unicode = Unicode;
            G.Save(false);
            G.AddImage(ImagePath);
            Glyphs.Add(G);
        }