create GetInfo

This commit is contained in:
Kulikova Svetlana
2022-03-09 19:01:22 +03:00
parent c4a767e038
commit 6c25c52a50
7 changed files with 57 additions and 0 deletions

View File

@ -98,6 +98,10 @@ void CDjVuFile::DrawPageOnRenderer(IRenderer* pRenderer, int nPageIndex, bool* p
if (m_pImplementation)
m_pImplementation->DrawPageOnRenderer(pRenderer, nPageIndex, pBreak);
}
BYTE* CDjVuFile::GetInfo()
{
return NULL;
}
void CDjVuFile::ConvertToPdf(const std::wstring& wsDstPath)
{
if (m_pImplementation)

View File

@ -70,6 +70,7 @@ public:
virtual int GetPagesCount();
virtual void GetPageInfo(int nPageIndex, double* pdWidth, double* pdHeight, double* pdDpiX, double* pdDpiY);
virtual void DrawPageOnRenderer(IRenderer* pRenderer, int nPageIndex, bool* pBreak);
virtual BYTE* GetInfo();
void ConvertToPdf(const std::wstring& path);