Create GetGlyphs for PdfFile

This commit is contained in:
Svetlana Kulikova
2024-11-02 10:00:44 +03:00
parent 1041802214
commit 3503eee5b6
5 changed files with 48 additions and 1 deletions

View File

@ -437,6 +437,12 @@ std::wstring CPdfFile::GetEmbeddedFontPath(const std::wstring& wsFontName)
return L"";
return m_pInternal->pReader->GetFontPath(wsFontName);
}
BYTE* CPdfFile::GetGlyphs(int nPageIndex)
{
if (!m_pInternal->pReader)
return NULL;
return m_pInternal->pReader->GetGlyphs(nPageIndex);
}
BYTE* CPdfFile::GetAnnots(int nPageIndex)
{
if (!m_pInternal->pReader)