mirror of
https://github.com/ONLYOFFICE/core.git
synced 2026-07-20 03:08:28 +08:00
Create PdfLink
This commit is contained in:
@ -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);
|
||||
}
|
||||
|
||||
// ------------------------------------------------------------------------
|
||||
|
||||
|
||||
Reference in New Issue
Block a user