Sha256: d277c087410dbb3f8ec00ce8ef2315951d6b6c3c8ddd1805df55dce08d24ae64
Contents?: true
Size: 756 Bytes
Versions: 10
Compression:
Stored size: 756 Bytes
Contents
# coding: utf-8 require 'ascii85' class PDF::Reader module Filter # :nodoc: # implementation of the Ascii85 filter class Ascii85 def initialize(options = {}) @options = options end ################################################################################ # Decode the specified data using the Ascii85 algorithm. Relies on the AScii85 # rubygem. # def filter(data) data = "<~#{data}" unless data.to_s[0,2] == "<~" ::Ascii85::decode(data) rescue Exception => e # Oops, there was a problem decoding the stream raise MalformedPDFError, "Error occured while decoding an ASCII85 stream (#{e.class.to_s}: #{e.to_s})" end end end end
Version data entries
10 entries across 10 versions & 2 rubygems