2022-05-18 18:47:31 +02:00
|
|
|
// CHAPTER 5. Compression
|
2022-05-12 17:57:13 +02:00
|
|
|
|
|
|
|
/** Compresses any uncompressed streams in the given PDF using the Flate
|
|
|
|
algorithm. */
|
2022-05-18 18:47:31 +02:00
|
|
|
function compress(pdf)
|
2022-05-12 17:57:13 +02:00
|
|
|
|
|
|
|
/** Decompresses any streams in the given PDF, so long as the compression
|
|
|
|
method is supported. */
|
2022-05-18 18:47:31 +02:00
|
|
|
function decompress(pdf)
|
2022-05-12 17:57:13 +02:00
|
|
|
|
|
|
|
/** Squeezes a pdf in memory. */
|
2022-05-18 18:47:31 +02:00
|
|
|
function squeezeInMemory(pdf)
|