Skip to content

carb/prawn-labels

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

16 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

== Prawn/Labels: A simple helper to generate labels for Prawn PDFs

Prawn/Labels takes the guess work out of generating labels using Prawn

== Usage
  
  require 'prawn/labels'

  names = ["Jordan", "Chris", "Jon", "Mike", "Kelly", "Bob", "Greg"]

  # Create and save a PDF file
  Prawn::Labels.generate("names.pdf", names, :type => "Avery5160") do |pdf, name|
    pdf.text name
  end

  # Render a PDF file and send to browser
  labels = Prawn::Labels.render(names, :type => "Avery5160") do |pdf, name|
    pdf.text name
  end
  send_data labels, :filename => "names.pdf", :type => "application/pdf"

This creates a document with a name from the names array in each label. The labels will be formatted for Avery 5160 labels. Formats are defined in the prawn/labels/types.yaml file.

== Contributors

Jordan Byron <jordanbyron.com>
David Speake <david@verycleverstuff.co.uk>
Carlo Biedenharn <cbieden@mit.edu>

About

Prawn/Labels: A simple helper to generate labels for Prawn PDFs

Resources

License

Unknown, GPL-2.0 licenses found

Licenses found

Unknown
LICENSE
GPL-2.0
COPYING

Stars

1 star

Watchers

0 watching

Forks

Releases

No releases published

Packages

 
 
 

Contributors

Languages

  • Ruby 100.0%