Home | History | Annotate | Download | only in src

Lines Matching refs:page_index

57 DLLEXPORT void STDCALL FPDFPage_Delete(FPDF_DOCUMENT document, int page_index)

62 if (page_index < 0 || page_index >= pDoc->GetPageCount())
65 pDoc->DeletePage(page_index);
68 DLLEXPORT FPDF_PAGE STDCALL FPDFPage_New(FPDF_DOCUMENT document, int page_index, double width, double height)
75 if(page_index < 0)
76 page_index = 0;
77 if(pDoc->GetPageCount()<page_index)
78 page_index = pDoc->GetPageCount();
79 // if (page_index < 0 || page_index >= pDoc->GetPageCount())
82 CPDF_Dictionary* pPageDict = pDoc->CreateNewPage(page_index);