Sha256: 9e2dc17817c4570b4b6d0ade1316bb8080c84cf41f5d6daf12ede5ffd6e004b6

Contents?: true

Size: 1.4 KB

Versions: 8

Compression:

Stored size: 1.4 KB

Contents

=begin

    This file is part of Origami, PDF manipulation framework for Ruby
    Copyright (C) 2016	Guillaume Delugré.

    Origami is free software: you can redistribute it and/or modify
    it under the terms of the GNU Lesser General Public License as published by
    the Free Software Foundation, either version 3 of the License, or
    (at your option) any later version.

    Origami is distributed in the hope that it will be useful,
    but WITHOUT ANY WARRANTY; without even the implied warranty of
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    GNU Lesser General Public License for more details.

    You should have received a copy of the GNU Lesser General Public License
    along with Origami.  If not, see <http://www.gnu.org/licenses/>.

=end

module Origami

    module Filter

        #
        # Class representing a Filter used to encode and decode data with JPX compression algorithm.
        #
        class JPX
            include Filter

            #
            # Not supported.
            #
            def encode(stream)
                raise NotImplementedError.new("#{self.class} is not yet supported", input_data: stream)
            end

            #
            # Not supported.
            #
            def decode(stream)
                raise NotImplementedError.new("#{self.class} is not yet supported", input_data: stream)
            end
        end

    end
end

Version data entries

8 entries across 8 versions & 2 rubygems

Version Path
origamindee-3.1.0 lib/origami/filters/jpx.rb
origamindee-3.0.0 lib/origami/filters/jpx.rb
origami-2.1.0 lib/origami/filters/jpx.rb
origami-2.0.4 lib/origami/filters/jpx.rb
origami-2.0.3 lib/origami/filters/jpx.rb
origami-2.0.2 lib/origami/filters/jpx.rb
origami-2.0.1 lib/origami/filters/jpx.rb
origami-2.0.0 lib/origami/filters/jpx.rb