Class: Pdfrb::Content::Operator::SaveGraphicsState

Inherits:
NoArg
  • Object
show all
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

serialize

Methods inherited from Base

register, serialize

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

.nameObject



12
# File 'lib/pdfrb/content/operators/general.rb', line 12

def self.name; "q"; end