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:
@@ -4,5 +4,15 @@
|
||||
* in JSON format to the given filename. If parse_content is true, page content
|
||||
* is parsed. If no_stream_data is true, all stream data is suppressed entirely.
|
||||
* */
|
||||
void cpdf_outputJSON(const char[], int, int, int);
|
||||
void cpdf_outputJSON(const char[], int, int, int, int);
|
||||
|
||||
/* cpdf_outputJSONMemory(parse_content, no_stream_data, pdf, &length) is like
|
||||
* outputJSON, but it write to a buffer in memory. The length is filled in. */
|
||||
void *cpdf_outputJSONMemory(int, int, int, int, int *);
|
||||
|
||||
/* Load a PDF from a JSON file given its filename */
|
||||
int cpdf_fromJSON(const char[]);
|
||||
|
||||
/* Load a PDF from a JSON file in memory, given the buffer and its length */
|
||||
int cpdf_fromJSONMemory(void *, int);
|
||||
|
||||
|
Reference in New Issue
Block a user