Sha256: 8d46b0f62f18a1514138f448c6af177cfe69ab620863782b0bb022e3361d3c34
Contents?: true
Size: 793 Bytes
Versions: 8
Compression:
Stored size: 793 Bytes
Contents
# encoding: utf-8 # # Demonstrates basic image embedding and positioning functionality. # For positioning images alongside flowing text, see the image_flow.rb # example. # require "#{File.dirname(__FILE__)}/../example_helper.rb" Prawn::Document.generate("basic_images.pdf", :page_layout => :landscape) do stef = "#{Prawn::BASEDIR}/data/images/stef.jpg" image stef, :at => [75, 75] stef = "#{Prawn::BASEDIR}/data/images/stef.jpg" image stef, :at => [500, 400], :width => 200, :height => 200 text "Please enjoy the pigs", :size => 36, :at => [200,15] ruport = "#{Prawn::BASEDIR}/data/images/ruport.png" image ruport, :at => [400,200], :width => 150 ruport = "#{Prawn::BASEDIR}/data/images/ruport_transparent.png" image ruport, :at => [50,525] end
Version data entries
8 entries across 8 versions & 2 rubygems