Created
August 25, 2011 00:11
-
-
Save erikbuild/1169629 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 'rubygems' | |
| require 'prawn' | |
| require 'prawn/core' | |
| require 'prawn/layout' | |
| require 'fastercsv' | |
| require 'awesome_print' | |
| # Parse the CSV | |
| residents = FasterCSV.read("residents.csv") | |
| ap residents | |
| rooms = Hash.new | |
| residents.each { |r| rooms[r[0]] = (rooms[r[0]] || []) + [r[1]] } | |
| ap rooms | |
| # Create the PDF object | |
| pdf = Prawn::Document.generate("output/portal_doordecs.pdf") do | |
| text "Door Decs" | |
| # Iterate over every room. | |
| rooms.each_pair do |room, names| | |
| start_new_page | |
| # Room Number | |
| move_up 70 | |
| font "Univers LT 49 Light Ultra Condensed.ttf" | |
| text room, :size => 375, :align => :left | |
| move_up 40 | |
| # Building | |
| font 'UniversLTStd-BoldCn.ttf' | |
| text 'Hilltop Apartments - Wheeler', :size => 24 | |
| # Top Line | |
| move_down 40 | |
| stroke do | |
| rectangle [0,y], 500, 1 | |
| end | |
| # Lines | |
| move_up 20 | |
| image 'lines.png', :position => :left, :height => 40 | |
| move_down 20 | |
| # Resident Names | |
| names.each do |name| | |
| text name.upcase, :size => 24 | |
| end | |
| # Middle Line | |
| move_down 40 | |
| stroke do | |
| rectangle [0,y], 500, 1 | |
| end | |
| # Icons | |
| #move_down 50 | |
| move_up 20 | |
| image 'icons.png', :position => :left, :height => 100 | |
| # Aperature Logo | |
| move_down 40 | |
| image 'aperature_labs.png', :position => :left, :height => 30 | |
| end | |
| end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment