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.
Instance Method Summary collapse
-
#decode(stream) ⇒ Object
Not supported.
-
#encode(stream) ⇒ Object
Not supported.
Instance Method Details
#decode(stream) ⇒ Object
Not supported.
46 47 48 |
# File 'lib/origami/filters/jpx.rb', line 46 def decode(stream) raise NotImplementedError, "#{self.class} is not yet supported" end |
#encode(stream) ⇒ Object
Not supported.
39 40 41 |
# File 'lib/origami/filters/jpx.rb', line 39 def encode(stream) raise NotImplementedError, "#{self.class} is not yet supported" end |