module Origami::Filter
Filters are algorithms used to encode data into a PDF Stream.
Constants
- A85
Class representing a filter used to encode and decode data written in base85 encoding.
- AHx
Class representing a filter used to encode and decode data written into hexadecimal.
- CCF
Class representing a Filter used to encode and decode data with CCITT-facsimile compression algorithm.
- Fl
Class representing a Filter used to encode and decode data with zlib/Flate compression algorithm.
- RL
Class representing a Filter used to encode and decode data using RLE compression algorithm.
Public Class Methods
included(receiver)
click to toggle source
# File lib/origami/filters.rb, line 325 def self.included(receiver) receiver.extend(ClassMethods) end
new(parameters = {})
click to toggle source
# File lib/origami/filters.rb, line 321 def initialize(parameters = {}) @params = parameters end