This commit is contained in:
John Whitington
2021-07-26 19:50:33 +01:00
parent 8fda026ad7
commit 5f8a0766ad
22 changed files with 1513 additions and 1 deletions

17
pysplits/c06.tex Normal file
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);