Class: Origami::PDF::Revision
- Inherits:
-
Object
- Object
- Origami::PDF::Revision
- Defined in:
- lib/origami/pdf.rb
Overview
Class representing a particular revision in a PDF file. Revision contains :
-
A Body, which is a sequence of Object.
-
A XRef::Section, holding XRef information about objects in body.
-
A Trailer.
Instance Attribute Summary collapse
-
#body ⇒ Object
Returns the value of attribute body.
-
#pdf ⇒ Object
Returns the value of attribute pdf.
-
#trailer ⇒ Object
Returns the value of attribute trailer.
-
#xrefstm ⇒ Object
Returns the value of attribute xrefstm.
-
#xreftable ⇒ Object
Returns the value of attribute xreftable.
Instance Method Summary collapse
- #each_object(&b) ⇒ Object
- #has_xrefstm? ⇒ Boolean
- #has_xreftable? ⇒ Boolean
-
#initialize(doc) ⇒ Revision
constructor
A new instance of Revision.
- #objects ⇒ Object
Constructor Details
#initialize(doc) ⇒ Revision
Returns a new instance of Revision.
86 87 88 89 90 91 92 |
# File 'lib/origami/pdf.rb', line 86 def initialize(doc) @document = doc @body = {} @xreftable = nil @xrefstm = nil @trailer = nil end |
Instance Attribute Details
#body ⇒ Object
Returns the value of attribute body.
83 84 85 |
# File 'lib/origami/pdf.rb', line 83 def body @body end |
#pdf ⇒ Object
Returns the value of attribute pdf.
82 83 84 |
# File 'lib/origami/pdf.rb', line 82 def pdf @pdf end |
#trailer ⇒ Object
Returns the value of attribute trailer.
84 85 86 |
# File 'lib/origami/pdf.rb', line 84 def trailer @trailer end |
#xrefstm ⇒ Object
Returns the value of attribute xrefstm.
83 84 85 |
# File 'lib/origami/pdf.rb', line 83 def xrefstm @xrefstm end |
#xreftable ⇒ Object
Returns the value of attribute xreftable.
83 84 85 |
# File 'lib/origami/pdf.rb', line 83 def xreftable @xreftable end |
Instance Method Details
#each_object(&b) ⇒ Object
108 109 110 |
# File 'lib/origami/pdf.rb', line 108 def each_object(&b) @body.each_value(&b) end |
#has_xrefstm? ⇒ Boolean
104 105 106 |
# File 'lib/origami/pdf.rb', line 104 def has_xrefstm? not @xrefstm.nil? end |
#has_xreftable? ⇒ Boolean
100 101 102 |
# File 'lib/origami/pdf.rb', line 100 def has_xreftable? not @xreftable.nil? end |
#objects ⇒ Object
112 113 114 |
# File 'lib/origami/pdf.rb', line 112 def objects @body.values end |