Skip to content

Instantly share code, notes, and snippets.

@thiagofm
Created October 17, 2009 01:01
Show Gist options
  • Save thiagofm/212183 to your computer and use it in GitHub Desktop.
Save thiagofm/212183 to your computer and use it in GitHub Desktop.
require "pdf/writer"
pdf = PDF::Writer.new
pdf.select_font "Times-Roman"
pdf.text "Certificado de POG", :font_size => 72, :justification => :center
pdf.text "Microsoft Corporation (R)", :font_size => 32, :justification => :center
pdf.text "O sr. Ricardo Lopes de Goes cumpriu os cursos da microsoft M$ POG001 ao M$ POG999++ e agora é um POGueiro.", :font_size => 12, :justification => :left
pdf.text "Grau de aproveitamento: 100% <gênial>", :font_size =>20, :justification => :left
pdf.save_as("certificacao.pdf")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment