Method: Color::CMYK#pdf_stroke

Defined in:
lib/color/cmyk.rb

#pdf_strokeObject

Present the colour as a DeviceCMYK stroke colour string for PDF. This will be removed from the default package in color-tools 2.0.


52
53
54
# File 'lib/color/cmyk.rb', line 52

def pdf_stroke
  PDF_FORMAT_STR % [ @c, @m, @y, @k, "K" ]
end