mirror of
https://github.com/ONLYOFFICE/core.git
synced 2026-07-11 14:00:32 +08:00
Create GetGlyphs for PdfFile
This commit is contained in:
@ -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)
|
||||
|
||||
Reference in New Issue
Block a user