Class: Rabbit::ImageManipulable::PDF

Inherits:
Base
  • Object
show all
Includes:
GetText
Defined in:
lib/rabbit/image/pdf.rb

Constant Summary

Constants included from GetText

GetText::DOMAIN

Constants included from ModuleLoader

ModuleLoader::LOADERS

Instance Attribute Summary

Attributes inherited from Base

#height, #original_height, #original_width, #width

Class Method Summary collapse

Instance Method Summary collapse

Methods included from GetText

included

Methods inherited from Base

#[], #[]=, #initialize, #keep_ratio, #keep_ratio=, #resize

Methods included from ModuleLoader

extend_object, #find_loader, #loaders, #push_loader, #unshift_loader

Constructor Details

This class inherits a constructor from Rabbit::ImageManipulable::Base

Class Method Details

.match?(filename) ⇒ Boolean

Returns:

  • (Boolean)


14
15
16
17
18
19
20
21
22
23
24
25
26
27
# File 'lib/rabbit/image/pdf.rb', line 14

def match?(filename)
  return true if File.extname(filename) == ".pdf"

  File.open(filename) do |file|
    line = file.gets
    return false if line.nil?

    begin
      /\A%PDF-1\.\d\z/ =~ line.chomp
    rescue ArgumentError
      false
    end
  end
end

Instance Method Details

#draw(canvas, x, y, params = {}) ⇒ Object



30
31
32
33
34
35
36
37
38
39
40
# File 'lib/rabbit/image/pdf.rb', line 30

def draw(canvas, x, y, params={})
  if @document
    default_params = {
      :width => width,
      :height => height,
    }
    canvas.draw_poppler_page(page, x, y, default_params.merge(params))
  else
    super
  end
end

#pixbufObject



42
43
44
# File 'lib/rabbit/image/pdf.rb', line 42

def pixbuf
  @pixbuf ||= to_pixbuf
end