17 lines
419 B
TeX
17 lines
419 B
TeX
|
// CHAPTER 5. Compression
|
||
|
|
||
|
/** Compresses any uncompressed streams in the given PDF using the Flate
|
||
|
algorithm.
|
||
|
@arg {pdf} pdf PDF document */
|
||
|
function compress(pdf) {}
|
||
|
|
||
|
/** Decompresses any streams in the given PDF, so long as the compression
|
||
|
method is supported.
|
||
|
@arg {pdf} pdf PDF document */
|
||
|
function decompress(pdf) {}
|
||
|
|
||
|
/** Squeezes a pdf in memory.
|
||
|
@arg {pdf} pdf PDF document */
|
||
|
function squeezeInMemory(pdf) {}
|
||
|
|