#include "BitmapFont.h" |
#include "BitmapFont.h" |
ostream& operator<<(ostream &os,const BitmapFont &bf){ |
ostream& operator<<(ostream &os,const BitmapFont &bf){ |
|
#if 0 |
os << "width= " << bf.getWidth() <<",height=" << bf.getHeight() <<"\n"; |
os << "width= " << bf.getWidth() <<",height=" << bf.getHeight() <<"\n"; |
|
#endif |
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)) os << '@'; |
if(bf.get(x,y)) os << '@'; |
} |
} |
os << "\n"; |
os << "\n"; |
} |
} |
|
#if 0 |
vector<pixel>::iterator it; |
vector<pixel>::iterator it; |
for(it=bf.pixels.begin();it!=bf.pixels.end();it++) |
for(it=bf.pixels.begin();it!=bf.pixels.end();it++) |
os << '(' << (*it).first << ',' << (*it).second << ')'; |
os << '(' << (*it).first << ',' << (*it).second << ')'; |
os << "\n"; |
os << "\n"; |
|
#endif |
return os; |
return os; |
} |
} |