Sha256: 800ffb5cf12f0b2ea226cbaa8aedb7b09b3a6ad11f03c4cb8a3c452a243461d3
Contents?: true
Size: 492 Bytes
Versions: 10
Compression:
Stored size: 492 Bytes
Contents
# coding: utf-8 # class PDF::Reader module Filter # :nodoc: # implementation of the LZW stream filter class Lzw def initialize(options = {}) @options = options end ################################################################################ # Decode the specified data with the LZW compression algorithm def filter(data) data = PDF::Reader::LZW.decode(data) Depredict.new(@options).filter(data) end end end end
Version data entries
10 entries across 10 versions & 2 rubygems