class HexaPDF::Content::Operator::SetLineCapStyle
See: PDF2.0 s8.4.4
Implementation of the āJā operator.
def initialize
def initialize super('J') end
def invoke(processor, cap_style) #:nodoc:
def invoke(processor, cap_style) #:nodoc: processor.graphics_state.line_cap_style = LineCapStyle.normalize(cap_style) end