mirror of
https://github.com/ONLYOFFICE/core.git
synced 2026-07-19 22:01:45 +08:00
Redact PdfReader
This commit is contained in:
@ -354,6 +354,15 @@ bool CPdfFile::UnmergePages()
|
||||
return false;
|
||||
return m_pInternal->pReader->UnmergePages();
|
||||
}
|
||||
bool CPdfFile::RedactPage(int nPageIndex, double* arrRedactBox, int nLengthX4, BYTE* pChanges, int nLength)
|
||||
{
|
||||
if (!m_pInternal->pReader)
|
||||
{
|
||||
free(pChanges);
|
||||
return false;
|
||||
}
|
||||
return m_pInternal->pReader->RedactPage(nPageIndex, arrRedactBox, nLengthX4, pChanges, nLength);
|
||||
}
|
||||
int CPdfFile::GetRotate(int nPageIndex)
|
||||
{
|
||||
if (!m_pInternal->pReader)
|
||||
|
||||
Reference in New Issue
Block a user