Skip to content

Instantly share code, notes, and snippets.

@CootCraig
Created April 29, 2011 03:40
Show Gist options
  • Save CootCraig/947787 to your computer and use it in GitHub Desktop.
Save CootCraig/947787 to your computer and use it in GitHub Desktop.
Prawn TTF font versus Built-in font
require 'prawn'
Prawn::Document.generate "my.pdf" do
font_size 40
font "Times-Roman"
text "Times-Roman"
font "times.ttf"
text "times.ttf"
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment