Given a PDF with many pages, I would like to split it up. e.g. Given a 10 page PDF, I would create two smaller PDFs, one with pages 1-5 and one with pages 6-10.
I can create the output PDFs with:
pPDFDoc = FPDF_CreateNewDocument()
and I can insert new pages with:
FPDFPage_New(pPDFDoc,0,500,600);
but what about inserting existing pages obtained with
FPDF_LoadPage
from the original PDF.
Thanks!
Richard
I can create the output PDFs with:
pPDFDoc = FPDF_CreateNewDocument()
and I can insert new pages with:
FPDFPage_New(pPDFDoc,0,500,600);
but what about inserting existing pages obtained with
FPDF_LoadPage
from the original PDF.
Thanks!
Richard
Comment