Sha256: a65615530665a36ead042fb89d810bd210cec43d81a979d86a4189d3568f4d0f

Contents?: true

Size: 391 Bytes

Versions: 5

Compression:

Stored size: 391 Bytes

Contents

# encoding: utf-8
#
# Demonstrates Prawn's support for CMYK images and colors.
#
$LOAD_PATH.unshift(File.join(File.dirname(__FILE__), '..', '..', 'lib'))
require "prawn"

Prawn::Document.generate("cmyk.pdf", :page_layout => :landscape) do
  fill_color 50, 100, 0, 0
  text "Prawn is CYMK Friendly"
  fractal = "#{Prawn::BASEDIR}/data/images/fractal.jpg"
  image fractal, :at => [50,450]
end

Version data entries

5 entries across 5 versions & 2 rubygems

Version Path
kavu-prawn-core-0.4.100 examples/graphics/cmyk.rb
kavu-prawn-core-0.4.99 examples/graphics/cmyk.rb
prawn-0.3.0 examples/graphics/cmyk.rb
prawn-0.4.0 examples/graphics/cmyk.rb
prawn-0.4.1 examples/graphics/cmyk.rb