Home > Back-end >  Ask how to append a page at the end of the a PDF file PDF
Ask how to append a page at the end of the a PDF file PDF

Time:12-03

I have a huge PDF file, it is very big, there may be 10 million pages, the size of more than 1 TB, now I want to have another very small, only one page of the PDF is appended to the huge tail PDF file, is there any open source library can achieve additional, rather than the PDF of the combined written to the hard disk inside the

I tried the mupdf/podofo, but didn't find any way

CodePudding user response:

Really so big PDF file?

CodePudding user response:

Use Windows's own PDF printer can not?
 
CPrintInfo Info;
Info. M_rectDraw. SetRect (0, 0, dc GetDeviceCaps (HORZRES), dc, GetDeviceCaps (VERTRES));
OnBeginPrinting (& amp; Dc, & amp; Info);
Dc. StartPage ();
Info. M_nCurPage=a page;
Print ();//a custom function
OnEndPrinting (& amp; Dc, & amp; Info);
  • Related