mirror of
https://github.com/johnwhitington/cpdf-source.git
synced 2025-06-05 22:09:39 +02:00
Updating html_manual/splits
This commit is contained in:
@@ -147,7 +147,7 @@ int cpdf_getPageRotation(int, int);
|
||||
int cpdf_hasBox(int, int, const char[]);
|
||||
|
||||
/*
|
||||
* These functions get a box given the document, page range, min x, max x,
|
||||
* These functions get a box given the document, page number, min x, max x,
|
||||
* min y, max y in points. Only succeeds if such a box exists, as checked by
|
||||
* cpdf_hasBox.
|
||||
*/
|
||||
@@ -292,7 +292,21 @@ char *cpdf_getPageLabelStringForPage(int, int);
|
||||
/*
|
||||
* Get page label data. Call cpdf_startGetPageLabels to find out how many
|
||||
* there are, then use these serial numbers to get the style, prefix, offset
|
||||
* and range. Call cpdf_endGetPageLabels to clean up.
|
||||
* and start value (note not a range). Call cpdf_endGetPageLabels to clean up.
|
||||
*
|
||||
* For example, a document might have five pages of introduction with roman
|
||||
* numerals, followed by the rest of the pages in decimal arabic, numbered from
|
||||
* one:
|
||||
*
|
||||
* labelstyle = LowercaseRoman
|
||||
* labelprefix = ""
|
||||
* startpage = 1
|
||||
* startvalue = 1
|
||||
*
|
||||
* labelstyle = DecimalArabic
|
||||
* labelprefix = ""
|
||||
* startpage = 6
|
||||
* startvalue = 1
|
||||
*/
|
||||
int cpdf_startGetPageLabels(int);
|
||||
enum cpdf_pageLabelStyle cpdf_getPageLabelStyle(int);
|
||||
|
Reference in New Issue
Block a user