class PDF::Reader::Filter::Lzw

implementation of the LZW stream filter
:nodoc:

def filter(data)

Decode the specified data with the LZW compression algorithm
###############################################################################
def filter(data)
  data = PDF::Reader::LZW.decode(data)
  Depredict.new(@options).filter(data)
end

def initialize(options = {})

def initialize(options = {})
  @options = options
end