cpdf-source/docsplits/splits/c16.tex

23 lines
871 B
TeX

/* CHAPTER 15. PDF and JSON */
/* Set the JSON output format. If true, the newer UTF8 format is used. Default:
* false. */
void cpdf_JSONUTF8(int);
/* 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.
* */
void cpdf_outputJSON(const char[], int, int, int, int);
/* cpdf_outputJSONMemory(parse_content, no_stream_data, pdf, size) is like
* outputJSON, but it writes 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);