Beispiel #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;
 }
Beispiel #2
0
        public static BDFFontContainer CreateFont(Stream r)
        {
            BDFParser parser = new BDFParser(r);

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