Sha256: 93382d9893825eb986e9895a4fe99a71cc845c2a5ad358f0d9580c6ac494c88b
Contents?: true
Size: 540 Bytes
Versions: 9
Compression:
Stored size: 540 Bytes
Contents
# coding: utf-8 # typed: strict # frozen_string_literal: true # 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
9 entries across 9 versions & 1 rubygems