Add StartID, AP.have. Fix color for Text annot

This commit is contained in:
Svetlana Kulikova
2023-10-09 16:08:06 +03:00
parent e848a63587
commit 5ce26e6dca
13 changed files with 66 additions and 14 deletions

View File

@ -996,6 +996,13 @@ int CPdfFile::GetRotate(int nPageIndex)
#endif
return m_pInternal->pReader->GetRotate(nPageIndex);
}
int CPdfFile::GetMaxRefID()
{
if (!m_pInternal->pReader)
return 0;
return m_pInternal->pReader->GetMaxRefID();
}
void CPdfFile::DrawPageOnRenderer(IRenderer* pRenderer, int nPageIndex, bool* pBreak)
{
if (!m_pInternal->pReader)