17 lines
419 B
TeX
Raw Normal View History

2022-05-18 17:47:31 +01:00
// CHAPTER 5. Compression
2022-05-12 16:57:13 +01:00
/** Compresses any uncompressed streams in the given PDF using the Flate
2022-08-10 19:07:58 +01:00
algorithm.
@arg {pdf} pdf PDF document */
function compress(pdf) {}
2022-05-12 16:57:13 +01:00
/** Decompresses any streams in the given PDF, so long as the compression
2022-08-10 19:07:58 +01: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 16:57:13 +01:00