// CHAPTER 15. PDF and JSON /** 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. If decompress_streams is true, streams are decompressed. */ function outputJSON(filename, parse_content, no_stream_data, decompress_streams, pdf) /** Like outputJSON, but it writes to a byte array in memory. */ function outputJSONMemory(parse_content, no_stream_data, decompress_streams, pdf) /** Loads a PDF from a JSON file given its filename. */ function fromJSON(filename) /** Loads a PDF from a JSON file in memory. */ function fromJSONMemory(data)