Create PdfLink

This commit is contained in:
Svetlana Kulikova
2026-03-25 16:55:22 +03:00
parent 78219fcba1
commit d4b4fc04d9
9 changed files with 180 additions and 1 deletions

View File

@ -605,6 +605,12 @@ BYTE* CPdfFile::GetAPAnnots(int nRasterW, int nRasterH, int nBackgroundColor, in
return NULL;
return m_pInternal->pReader->GetAPAnnots(nRasterW, nRasterH, nBackgroundColor, nPageIndex, nAnnot, sView);
}
std::vector<CPdfLink*> CPdfFile::GetPdfLinks(int nPageIndex)
{
if (!m_pInternal->pReader)
return std::vector<CPdfLink*>();
return m_pInternal->pReader->GetPdfLinks(nPageIndex);
}
// ------------------------------------------------------------------------