class Origami::Filter::JPX
Class representing a Filter used to encode and decode data with JPX compression algorithm.
Public Instance Methods
decode(stream)
click to toggle source
Not supported.
# File lib/origami/filters/jpx.rb, line 46 def decode(stream) raise NotImplementedError, "#{self.class} is not yet supported" end
encode(stream)
click to toggle source
Not supported.
# File lib/origami/filters/jpx.rb, line 39 def encode(stream) raise NotImplementedError, "#{self.class} is not yet supported" end