Created
October 17, 2009 01:01
-
-
Save thiagofm/212183 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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