Skip to content

Instantly share code, notes, and snippets.

@bradediger
Created February 26, 2013 19:12
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bradediger/5041169 to your computer and use it in GitHub Desktop.
Save bradediger/5041169 to your computer and use it in GitHub Desktop.
# coding: utf-8
$:.unshift 'lib'
require 'prawn'
Prawn::Document.generate 'test_table.pdf' do
table [["Label:", 'text']], :cell_style => {:size => 10, :background_color => "000000", :border_width => 0} do
columns(0).text_color = "9a9a9a"
columns(1).text_color = "FFFFFF"
end
table [["Læbel:", 'text']], :cell_style => {:size => 10, :background_color => "000000", :border_width => 0} do
columns(0).text_color = "9a9a9a"
columns(1).text_color = "FFFFFF"
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment