Create GetGIDByUnicode

This commit is contained in:
Svetlana Kulikova
2025-12-16 15:41:14 +03:00
parent 9ece4889a1
commit aec1220bff
11 changed files with 148 additions and 2 deletions

View File

@ -445,6 +445,12 @@ BYTE* CPdfFile::GetAnnotStandardFonts()
return NULL;
return m_pInternal->pReader->GetFonts(true);
}
BYTE* CPdfFile::GetGIDByUnicode(const std::wstring& wsFontName)
{
if (!m_pInternal->pReader)
return NULL;
return m_pInternal->pReader->GetGIDByUnicode(wsFontName);
}
std::wstring CPdfFile::GetFontPath(const std::wstring& wsFontName)
{
if (!m_pInternal->pReader)