Create GetAnnotationsAP for PdfAnnot

This commit is contained in:
Kulikova Svetlana
2023-08-02 17:49:06 +03:00
parent c840748483
commit f5773119b5
14 changed files with 893 additions and 895 deletions

View File

@ -846,7 +846,13 @@ BYTE* CPdfFile::GetAnnots(int nPageIndex)
{
if (!m_pInternal->pReader)
return NULL;
return m_pInternal->pReader->GetAnnotations(nPageIndex);
return m_pInternal->pReader->GetAnnots(nPageIndex);
}
BYTE* CPdfFile::GetAPAnnots(int nRasterW, int nRasterH, int nBackgroundColor, int nPageIndex, int nAnnot, const char* sView)
{
if (!m_pInternal->pReader)
return NULL;
return m_pInternal->pReader->GetAPAnnots(nRasterW, nRasterH, nBackgroundColor, nPageIndex, nAnnot, sView);
}
// ------------------------------------------------------------------------