Class: PDF::Reader::FormXObject

Inherits:
Object
  • Object
show all
Extended by:
Forwardable
Defined in:
lib/pdf/reader/form_xobject.rb

Overview

High level representation of a single PDF form xobject. Form xobjects are contained pieces of content that can be inserted onto multiple pages. They’re generally used as a space efficient way to store repetative content (like logos, header, footers, etc).

This behaves and looks much like a limited PDF::Reader::Page class.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(page, xobject, options = {}) ⇒ FormXObject

Returns a new instance of FormXObject.



31
32
33
34
35
36
# File 'lib/pdf/reader/form_xobject.rb', line 31

def initialize(page, xobject, options = {})
  @page    = page
  @objects = page.objects
  @cache   = options[:cache] || {}
  @xobject = @objects.deref_stream(xobject)
end

Instance Attribute Details

#xobjectObject (readonly)

Returns the value of attribute xobject.



20
21
22
# File 'lib/pdf/reader/form_xobject.rb', line 20

def xobject
  @xobject
end

Instance Method Details

#font_objectsObject

return a hash of fonts used on this form.

The keys are the font labels used within the form content stream.

The values are a PDF::Reader::Font instances that provide access to most available metrics for each font.



45
46
47
48
49
50
# File 'lib/pdf/reader/form_xobject.rb', line 45

def font_objects
  raw_fonts = @objects.deref_hash(fonts)
  ::Hash[raw_fonts.map { |label, font|
    [label, PDF::Reader::Font.new(@objects, @objects.deref_hash(font) || {})]
  }]
end

#raw_contentObject

returns the raw content stream for this page. This is plumbing, nothing to see here unless you’re a PDF nerd like me.



67
68
69
# File 'lib/pdf/reader/form_xobject.rb', line 67

def raw_content
  @xobject.unfiltered_data
end

#walk(*receivers) ⇒ Object

processes the raw content stream for this form in sequential order and passes callbacks to the receiver objects.

See the comments on PDF::Reader::Page#walk for more detail.



57
58
59
60
61
62
# File 'lib/pdf/reader/form_xobject.rb', line 57

def walk(*receivers)
  receivers = receivers.map { |receiver|
    ValidatingReceiver.new(receiver)
  }
  content_stream(receivers, raw_content)
end