Sha256: 0ad7cb5279eb2029d64f65741f26a008cfbd9dbabcbeb987c400b81530027235
Contents?: true
Size: 559 Bytes
Versions: 1
Compression:
Stored size: 559 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.3.0 | manual/images/scale.rb |