Class: Origami::Filter::JPX
- Inherits:
-
Object
- Object
- Origami::Filter::JPX
- Includes:
- Origami::Filter
- Defined in:
- lib/origami/filters/jpx.rb
Overview
Class representing a Filter used to encode and decode data with JPX compression algorithm.
Constant Summary
Constants included from Origami::Filter
Instance Method Summary collapse
-
#decode(stream) ⇒ Object
Not supported.
-
#encode(stream) ⇒ Object
Not supported.
Methods included from Origami::Filter
Instance Method Details
#decode(stream) ⇒ Object
Not supported.
41 42 43 |
# File 'lib/origami/filters/jpx.rb', line 41 def decode(stream) raise NotImplementedError.new("#{self.class} is not yet supported", input_data: stream) end |
#encode(stream) ⇒ Object
Not supported.
34 35 36 |
# File 'lib/origami/filters/jpx.rb', line 34 def encode(stream) raise NotImplementedError.new("#{self.class} is not yet supported", input_data: stream) end |