CEGUI - Font , FontButtfer

12人阅读 评论(0) 收藏 举报
view plain
  1.    
view plain
  1. Font的光栅化字符函数 <pre class="html" name="code">    virtual void rasterise(utf32 start_codepoint, utf32 end_codepoint) const;  

view plain
  1. Font类里保存字符编码和字符图片的map如下  
view plain
  1. //! Definition of CodepointMap type.  
  2. typedef std::map<utf32, FontGlyph> CodepointMap;  
  3. //! Contains mappings from code points to Image objects  
  4. CodepointMap d_cp_map;  


 通过Font的 

view plain
  1. const FontGlyph* getGlyphData(utf32 codepoint) const;  
view plain
  1. 获取FontGlyph, 进而获取对应的字符图片  
view plain
  1. //! Return the CEGUI::Image object rendered for this glyph.  
  2. const Image* getImage() const  
  3. return d_image; }  

 

 

view plain
  1.   


 


你可能感兴趣的:(CEGUI - Font , FontButtfer)