Class: Pdfrb::Content::Operator::SaveGraphicsState
- Defined in:
- lib/pdfrb/content/operators/general.rb
Overview
General graphics-state operators (s8.4.4): q Q cm BT ET.
q/Q push/pop the graphics-state stack on the Processor.
cm concatenates a matrix onto the CTM.
BT/ET begin/end a text object (reset text + line matrices).
Class Method Summary collapse
Methods inherited from NoArg
Methods inherited from Base
Class Method Details
.invoke(processor) ⇒ Object
13 |
# File 'lib/pdfrb/content/operators/general.rb', line 13 def self.invoke(processor, *); processor.push_graphics_state; end |
.name ⇒ Object
12 |
# File 'lib/pdfrb/content/operators/general.rb', line 12 def self.name; "q"; end |