Create GetWidgetFonts

This commit is contained in:
Svetlana Kulikova
2023-11-21 18:25:32 +03:00
parent a8f9ff175e
commit 49d3e46a0f
4 changed files with 123 additions and 0 deletions

View File

@ -1292,6 +1292,12 @@ BYTE* CPdfFile::GetWidgets()
return NULL;
return m_pInternal->pReader->GetWidgets();
}
BYTE* CPdfFile::GetWidgetFonts()
{
if (!m_pInternal->pReader)
return NULL;
return m_pInternal->pReader->GetWidgetFonts();
}
BYTE* CPdfFile::GetAnnots(int nPageIndex)
{
if (!m_pInternal->pReader)