diff --git a/data/fonts_whitelist.txt b/data/fonts_whitelist.txt index 77b974eafe..96470ed880 100644 --- a/data/fonts_whitelist.txt +++ b/data/fonts_whitelist.txt @@ -2,3 +2,4 @@ Basic_Latin 01_dejavusans.ttf Latin-1_Supplement 01_dejavusans.ttf Latin_Extended-A 01_dejavusans.ttf Latin_Extended-B 01_dejavusans.ttf +CJK_Compatibility 02_wqy-microhei.ttf diff --git a/yg/glyph_cache_impl.cpp b/yg/glyph_cache_impl.cpp index 063e524bae..4782fd2ec4 100644 --- a/yg/glyph_cache_impl.cpp +++ b/yg/glyph_cache_impl.cpp @@ -114,10 +114,39 @@ namespace yg for (int i = 0; i < fontNames.size(); ++i) addFont(fontNames[i].c_str()); -/* for (unicode_blocks_t::const_iterator it = m_unicodeBlocks.begin(); it != m_unicodeBlocks.end(); ++it) +/* LOG(LINFO, ("----------------------------")); + LOG(LINFO, ("-- Coverage Info -----------")); + LOG(LINFO, ("----------------------------")); + + for (unicode_blocks_t::const_iterator it = m_unicodeBlocks.begin(); it != m_unicodeBlocks.end(); ++it) + { + if (!it->m_fonts.empty()) + { + std::stringstream out; + + out << it->m_name << " : " << it->m_end + 1 - it->m_start << " symbols -> ["; + + for (unsigned i = 0; i < it->m_fonts.size(); ++i) + { + out << extract_name(it->m_fonts[i]->m_name) << " : " << it->m_coverage[i]; + if (i != it->m_fonts.size() - 1) + out << ", "; + } + + out << "]"; + + LOG(LINFO, (out.str())); + } + } + + LOG(LINFO, ("----------------------------")); + LOG(LINFO, ("-- Empty blocks ------------")); + LOG(LINFO, ("----------------------------")); + + for (unicode_blocks_t::const_iterator it = m_unicodeBlocks.begin(); it != m_unicodeBlocks.end(); ++it) if (it->m_fonts.empty()) LOG(LINFO, (it->m_name, " unicode block of ", it->m_end + 1 - it->m_start, " symbols is empty")); - */ +*/ } void GlyphCacheImpl::addFont(char const * fileName)