Sha256: d1696bc2aa5ef4252da70615b52a17ce7a04217c37283998441298d9e38a41aa
Contents?: true
Size: 851 Bytes
Versions: 1
Compression:
Stored size: 851 Bytes
Contents
# frozen_string_literal: true # The image may be positioned relatively to the current bounding box. The # horizontal position may be set with the <code>:position</code> option. # # It may be <code>:left</code>, <code>:center</code>, <code>:right</code> or a # number representing an x-offset from the left boundary. require_relative '../example_helper' filename = File.basename(__FILE__).gsub('.rb', '.pdf') Prawn::ManualBuilder::Example.generate(filename) do bounding_box([50, cursor], width: 400, height: 450) do stroke_bounds %i[left center right].each do |position| text "Image aligned to the #{position}." image "#{Prawn::DATADIR}/images/stef.jpg", position: position end text 'The next image has a 50 point offset from the left boundary' image "#{Prawn::DATADIR}/images/stef.jpg", position: 50 end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
prawn-2.3.0 | manual/images/horizontal.rb |