[wadalabfont-kit] / jis2prim / BitmapFont.cc  

Diff of /jis2prim/BitmapFont.cc

Parent Directory | Revision Log

version 1.1, Thu Feb 21 11:57:39 2002 UTC version 1.2, Fri Feb 22 12:03:48 2002 UTC
Line 3 
Line 3 
   os << "width= " << bf.getWidth()  <<",height=" << bf.getHeight() <<"\n";    os << "width= " << bf.getWidth()  <<",height=" << bf.getHeight() <<"\n";
   for(int y=0;y<bf.getHeight();y++){    for(int y=0;y<bf.getHeight();y++){
     for(int x=0;x<bf.getWidth();x++){      for(int x=0;x<bf.getWidth();x++){
       if(bf.get(x,y)) cout << '@';        if(bf.get(x,y)) os << '@';
       else cout << '.';        else os << '.';
     }      }
     cout << "\n";      os << "\n";
   }    }
   return cout;    vector<pixel>::iterator it;
     for(it=bf.pixels.begin();it!=bf.pixels.end();it++)
       os << '(' << (*it).first << ',' << (*it).second << ')';
     os << "\n";
     return os;
 }  }


Generate output suitable for use with a patch program
Legend:
Removed from v.1.1  
changed lines
  Added in v.1.2

ktanaka

Powered by ViewCVS 1.0-dev

ViewCVS and CVS Help