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:
37
html_manual/splits/c10.tex
Normal file
37
html_manual/splits/c10.tex
Normal file
@@ -0,0 +1,37 @@
|
||||
/* CHAPTER 9. Multipage facilities */
|
||||
|
||||
/*
|
||||
* Impose a document two up. cpdf_twoUp does so by retaining the existing
|
||||
* page size, scaling pages down. cpdf_twoUpStack does so by doubling the
|
||||
* page size, to fit two pages on one.
|
||||
*/
|
||||
void cpdf_twoUp(int);
|
||||
void cpdf_twoUpStack(int);
|
||||
|
||||
/*
|
||||
* cpdf_padBefore(pdf, range) adds a blank page before each page in the given
|
||||
* range.
|
||||
*/
|
||||
void cpdf_padBefore(int, int);
|
||||
|
||||
/*
|
||||
* cpdf_padAfter(pdf, range) adds a blank page after each page in the given
|
||||
* range.
|
||||
*/
|
||||
void cpdf_padAfter(int, int);
|
||||
|
||||
/* cpdf_pageEvery(pdf, n) adds a blank page after every n pages. */
|
||||
void cpdf_padEvery(int, int);
|
||||
|
||||
/*
|
||||
* cpdf_padMultiple(pdf, n) adds pages at the end to pad the file to a
|
||||
* multiple of n pages in length.
|
||||
*/
|
||||
void cpdf_padMultiple(int, int);
|
||||
|
||||
/*
|
||||
* cpdf_padMultiple(pdf, n) adds pages at the beginning to pad the file to a
|
||||
* multiple of n pages in length.
|
||||
*/
|
||||
void cpdf_padMultipleBefore(int, int);
|
||||
|
Reference in New Issue
Block a user