Class: HexaPDF::Content::Operator::EndText
- Inherits:
-
NoArgumentOperator
- Object
- BaseOperator
- NoArgumentOperator
- HexaPDF::Content::Operator::EndText
- Defined in:
- lib/hexapdf/content/operator.rb
Overview
Implementation of the ‘ET’ operator.
See: PDF1.7 s9.4.1
Instance Attribute Summary
Attributes inherited from BaseOperator
Instance Method Summary collapse
-
#initialize ⇒ EndText
constructor
Creates the operator.
-
#invoke(processor) ⇒ Object
:nodoc:.
Methods inherited from NoArgumentOperator
Methods inherited from BaseOperator
Constructor Details
#initialize ⇒ EndText
Creates the operator.
831 832 833 |
# File 'lib/hexapdf/content/operator.rb', line 831 def initialize super('ET') end |
Instance Method Details
#invoke(processor) ⇒ Object
:nodoc:
835 836 837 838 839 |
# File 'lib/hexapdf/content/operator.rb', line 835 def invoke(processor) #:nodoc: processor.graphics_object = :none processor.graphics_state.tm = nil processor.graphics_state.tlm = nil end |