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 41 def decode(stream) raise NotImplementedError.new("#{self.class} is not yet supported", input_data: stream) end
encode(stream)
click to toggle source
Not supported.
# File lib/origami/filters/jpx.rb, line 34 def encode(stream) raise NotImplementedError.new("#{self.class} is not yet supported", input_data: stream) end