Sha256: 25274ed4925c6cdcf118b7a536856bec29626b80d5e5b656cc8dcd214d7c3631

Contents?: true

Size: 556 Bytes

Versions: 1

Compression:

Stored size: 556 Bytes

Contents

# frozen_string_literal: true

# To scale an image use the <code>:scale</code> option.
#
# It scales the image proportionally given the provided value.

require_relative '../example_helper'

filename = File.basename(__FILE__).gsub('.rb', '.pdf')
Prawn::ManualBuilder::Example.generate(filename) do
  text 'Normal size'
  image "#{Prawn::DATADIR}/images/stef.jpg"
  move_down 20

  text 'Scaled to 50%'
  image "#{Prawn::DATADIR}/images/stef.jpg", scale: 0.5
  move_down 20

  text 'Scaled to 200%'
  image "#{Prawn::DATADIR}/images/stef.jpg", scale: 2
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
prawn-2.4.0 manual/images/scale.rb