Sha256: 8ee62df16a050332b5af5cc32a506d4477e42c43a60e59f1c8d9f3a7a111b401
Contents?: true
Size: 481 Bytes
Versions: 21
Compression:
Stored size: 481 Bytes
Contents
# encoding: utf-8 # # Demonstrates how to enable absolute positioning in Prawn by temporarily # removing the margin_box via Document#canvas() # require "#{File.dirname(__FILE__)}/../example_helper.rb" Prawn::Document.generate("canvas.pdf") do canvas do text "This text should appear at the absolute top left" # stroke a line to show that the relative coordinates are the same as absolute stroke_line [bounds.left,bounds.bottom], [bounds.right,bounds.top] end end
Version data entries
21 entries across 21 versions & 7 rubygems