# File lib/pdf/writer/strokestyle.rb, line 125 125: def render(debug = false) 126: s = "" 127: s << "#{width} w" if @width > 0 128: s << " #{LINE_CAPS[@cap]} J" if @cap 129: s << " #{LINE_JOINS[@join]} j" if @join 130: s << " #{@miter_limit} M" if @miter_limit 131: if @dash 132: s << " [" 133: @dash[:pattern].each { |len| s << " #{len}" } 134: s << " ] #{@dash[:phase] or 0} d" 135: end 136: s 137: end