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
|
2022-08-10 20:07:58 +02:00
|
|
|
algorithm.
|
|
|
|
@arg {pdf} pdf PDF document */
|
|
|
|
function compress(pdf) {}
|
2022-05-12 17:57:13 +02:00
|
|
|
|
|
|
|
/** Decompresses any streams in the given PDF, so long as the compression
|
2022-08-10 20:07:58 +02:00
|
|
|
method is supported.
|
|
|
|
@arg {pdf} pdf PDF document */
|
|
|
|
function decompress(pdf) {}
|
|
|
|
|
|
|
|
/** Squeezes a pdf in memory.
|
|
|
|
@arg {pdf} pdf PDF document */
|
|
|
|
function squeezeInMemory(pdf) {}
|
2022-05-12 17:57:13 +02:00
|
|
|
|