Sha256: 728a09b139c6ef77016b7bb1f5982c80f5bcefb35e4063aff38972f147c5ec67

Contents?: true

Size: 1.53 KB

Versions: 4

Compression:

Stored size: 1.53 KB

Contents

# Copyright (C) 2007-2018  Kouhei Sutou <kou@cozmixng.org>
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This program 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 General Public License for more details.
#
# You should have received a copy of the GNU General Public License along
# with this program; if not, write to the Free Software Foundation, Inc.,
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.

require "tempfile"

require "poppler"

require "rabbit/element"
require "rabbit/parser/base"

module Rabbit
  module Parser
    class PDF < Base
      unshift_loader(self)
      class << self
        def format_name
          "PDF"
        end

        def match?(source)
          extension = source.extension
          if extension.nil?
            source.read.start_with?("%PDF-1.")
          else
            /\Apdf\z/i =~ extension
          end
        end
      end

      include Element
      def parse
        doc = Poppler::Document.new(:data => @source.read)
        doc.each_with_index do |page, i|
          if i.zero?
            @canvas << PopplerTitleSlide.new(page, doc)
          else
            @canvas << PopplerSlide.new(page)
          end
        end
      end
    end
  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
rabbit-3.0.3 lib/rabbit/parser/pdf.rb
rabbit-3.0.2 lib/rabbit/parser/pdf.rb
rabbit-3.0.1 lib/rabbit/parser/pdf.rb
rabbit-3.0.0 lib/rabbit/parser/pdf.rb