Skip to content

nickhammond/prawn-fillform

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

19 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Prawn/Fillform: Fill Text and Images through Acroform Fields

Install

$ gem install prawn-fillform

Usage

Create a PDF form with Scribus, Adobe Products or something else. I have only tested this with Scribus. Currently only text fields and buttons are supported. Buttons are replaced by images.

require 'prawn-fillform'

data = {}
data[:page_1] = {}
data[:page_1][:firstname] = { :value => "Max" }
data[:page_1][:lastname] = { :value => "Mustermann" }
data[:page_1][:photo] = { :value => "test.jpg" }

# Create a PDF file with predefined data Fields
Prawn::Document.generate "output.pdf", :template => "template.pdf"  do |pdf|
  pdf.fill_form_with(data)
end

Take a look in examples folder

About

fill text and images through acroform fields

Resources

Stars

Watchers

Forks

Packages

No packages published