cpdf-source/docsplits/splits/c16.tex

19 lines
755 B
TeX
Raw Normal View History

2021-06-18 15:19:43 +02:00
/* CHAPTER 15. PDF and JSON */
/* cpdf_outputJSON(filename, parse_content, no_stream_data, pdf) outputs a PDF
* 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.
* */
2022-01-19 18:09:46 +01:00
void cpdf_outputJSON(const char[], int, int, int, int);
/* cpdf_outputJSONMemory(parse_content, no_stream_data, pdf, &length) is like
2022-03-04 18:26:01 +01:00
* outputJSON, but it writes to a buffer in memory. The length is filled in. */
2022-01-19 18:09:46 +01:00
void *cpdf_outputJSONMemory(int, int, int, int, int *);
2022-03-04 18:26:01 +01:00
/* Load a PDF from a JSON file given its filename. */
2022-01-19 18:09:46 +01:00
int cpdf_fromJSON(const char[]);
2022-03-04 18:26:01 +01:00
/* Load a PDF from a JSON file in memory, given the buffer and its length. */
2022-01-19 18:09:46 +01:00
int cpdf_fromJSONMemory(void *, int);
2021-06-18 15:19:43 +02:00