HTMl manual for cpdflib

This commit is contained in:
John Whitington
2021-07-06 14:34:03 +01:00
parent 46fa4071dd
commit dcb740ecc0
21 changed files with 1366 additions and 1 deletions

View File

@@ -0,0 +1,17 @@
/* CHAPTER 5. Compression */
/*
* cpdf_compress(pdf) compresses any uncompressed streams in the given PDF
* using the Flate algorithm.
*/
void cpdf_compress(int);
/*
* cpdf_uncompress(pdf) uncompresses any streams in the given PDF, so long as
* the compression method is supported.
*/
void cpdf_decompress(int);
/* cpdf_squeezeToMemory(pdf) squeezes a pdf in memory. */
void cpdf_squeezeInMemory(int);