Skip to content

Instantly share code, notes, and snippets.

@yob
Created July 24, 2009 04:22
Show Gist options
  • Save yob/153844 to your computer and use it in GitHub Desktop.
Save yob/153844 to your computer and use it in GitHub Desktop.
# encoding: utf-8
#
# An example of adding a text annotation to a page
#
require "#{File.dirname(__FILE__)}/../example_helper.rb"
Prawn::Document.generate "text_annotation.pdf" do |pdf|
pdf.text "Hello World", :at => [200,420], :size => 32, :rotate => 45
pdf.text_annotation([100,100,100,100], "Hi there")
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment