Class: PDF::Reader::FormXObject
- Inherits:
-
Object
- Object
- PDF::Reader::FormXObject
- 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
-
#xobject ⇒ Object
readonly
Returns the value of attribute xobject.
Instance Method Summary collapse
-
#font_objects ⇒ Object
return a hash of fonts used on this form.
-
#initialize(page, xobject, options = {}) ⇒ FormXObject
constructor
A new instance of FormXObject.
-
#raw_content ⇒ Object
returns the raw content stream for this page.
-
#walk(*receivers) ⇒ Object
processes the raw content stream for this form in sequential order and passes callbacks to the receiver objects.
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, = {}) @page = page @objects = page.objects @cache = [:cache] || {} @xobject = @objects.deref_stream(xobject) end |
Instance Attribute Details
#xobject ⇒ Object (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_objects ⇒ Object
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_content ⇒ Object
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 |