mirror of
https://github.com/johnwhitington/cpdf-source.git
synced 2025-06-05 22:09:39 +02:00
HTMl manual for cpdflib
This commit is contained in:
31
html_manual/splits/c03.tex
Normal file
31
html_manual/splits/c03.tex
Normal file
@@ -0,0 +1,31 @@
|
||||
/* CHAPTER 2. Merging and Splitting */
|
||||
|
||||
/*
|
||||
* cpdf_mergeSimple(pdfs, length) given an array of PDFs, and its length,
|
||||
* merges the files into a new one, which is returned.
|
||||
*/
|
||||
int cpdf_mergeSimple(int *, int);
|
||||
|
||||
/*
|
||||
* cpdf_merge(pdfs, len, retain_numbering, remove_duplicate_fonts) merges the
|
||||
* PDFs. If retain_numbering is true page labels are not rewritten. If
|
||||
* remove_duplicate_fonts is true, duplicate fonts are merged. This is useful
|
||||
* when the source documents for merging originate from the same source.
|
||||
*/
|
||||
int cpdf_merge(int *, int, int, int);
|
||||
|
||||
/*
|
||||
* cpdf_mergeSame(pdfs, len, retain_numbering, remove_duplicate_fonts,
|
||||
* ranges) is the same as cpdf_merge, except that it has an additional
|
||||
* argument - an array of page ranges. This is used to select the pages to
|
||||
* pick from each PDF. This avoids duplication of information when multiple
|
||||
* discrete parts of a source PDF are included.
|
||||
*/
|
||||
int cpdf_mergeSame(int *, int, int, int, int *);
|
||||
|
||||
/*
|
||||
* cpdf_selectPages(pdf, range) returns a new document which just those pages
|
||||
* in the page range.
|
||||
*/
|
||||
int cpdf_selectPages(int, int);
|
||||
|
Reference in New Issue
Block a user