Exemplo n.º 1
0
 public BDFParser.Rectangle getBbx(BDFParser.Rectangle rec)
 {
     rec.x = bbx.x;
     rec.y = bbx.y;
     rec.width = bbx.width;
     rec.height = bbx.height;
     return rec;
 }
Exemplo n.º 2
0
        public static BDFFontContainer CreateFont(Stream r)
        {
            BDFParser parser = new BDFParser(r);

            return(parser.CreateFont());
        }
Exemplo n.º 3
0
 public void setBbx(BDFParser.Rectangle bbx)
 {
     this.bbx = bbx;
 }
Exemplo n.º 4
0
 public void setVersion(BDFParser.Version version)
 {
     this.version = version;
 }
Exemplo n.º 5
0
 public void setResolution(BDFParser.Dimension resolution)
 {
     this.resolution = resolution;
 }
Exemplo n.º 6
0
 public void setBoundingBox(BDFParser.Rectangle boundingBox)
 {
     this.boundingBox = boundingBox;
 }
Exemplo n.º 7
0
 public static BDFFontContainer CreateFont(Stream r)
 {
     BDFParser parser = new BDFParser(r);
     return parser.CreateFont();
 }