Upgrade to Pro
— share decks privately, control downloads, hide ads and more …
Speaker Deck
Features
Speaker Deck
PRO
Sign in
Sign up for free
Search
Search
Generating Rich PDFs with Prawn
Search
Sponsored
·
Your Podcast. Everywhere. Effortlessly.
Share. Educate. Inspire. Entertain. You do you. We'll handle the rest.
→
Matthew Bass
August 18, 2009
0
74
Generating Rich PDFs with Prawn
Leverage Prawn from your Ruby scripts to generate rich, professional-looking PDFs.
Matthew Bass
August 18, 2009
Tweet
Share
More Decks by Matthew Bass
See All by Matthew Bass
Homesteading for Freelancers
pelargir
1
53
A/B Testing for Developers
pelargir
1
59
Homesteading: The New Entrepreneurial Model
pelargir
1
56
Pragmatic Pair Programming
pelargir
3
100
Chaotic Agility
pelargir
1
63
Distance Education: An Alternative to Traditional College
pelargir
0
60
Teascript: A Homesteader's Story
pelargir
1
41
Featured
See All Featured
<Decoding/> the Language of Devs - We Love SEO 2024
nikkihalliwell
1
150
Fight the Zombie Pattern Library - RWD Summit 2016
marcelosomers
234
17k
Distributed Sagas: A Protocol for Coordinating Microservices
caitiem20
333
22k
Principles of Awesome APIs and How to Build Them.
keavy
128
17k
ピンチをチャンスに:未来をつくるプロダクトロードマップ #pmconf2020
aki_iinuma
128
55k
Making the Leap to Tech Lead
cromwellryan
135
9.8k
Impact Scores and Hybrid Strategies: The future of link building
tamaranovitovic
0
220
Fashionably flexible responsive web design (full day workshop)
malarkey
408
66k
Navigating Algorithm Shifts & AI Overviews - #SMXNext
aleyda
1
1.2k
Utilizing Notion as your number one productivity tool
mfonobong
4
250
The Organizational Zoo: Understanding Human Behavior Agility Through Metaphoric Constructive Conversations (based on the works of Arthur Shelley, Ph.D)
kimpetersen
PRO
0
260
Lessons Learnt from Crawling 1000+ Websites
charlesmeaden
PRO
1
1.1k
Transcript
Generating Rich PDFs with Prawn Matthew Bass
Should my app even be generating PDFs?
The alternatives... • PDF::Writer http://ruby-pdf.rubyforge.org/pdf-writer/ • Ruby FPDF http://zeropluszero.com/software/fpdf/ •
And... that’s it?
PDF::Writer • The best choice for a long time... •
Much slower than Prawn • Markup isn’t as nice
• Port of FPDF written in PHP • Nice logo?
• ???
Prawn gives you PDF goodness... • Fast • Clean syntax*
• Image embedding, tables, etc. • Full UTF-8 support • PNGs with alpha transparencies
Caveat... http://prawn.majesticseacreature.com
History... • Founded April, 2008 by Gregory Brown • ...the
guy who brought us Ruport • Ruby Mendicant project
The gems... prawn-core http://prawn.majesticseacreature.com prawn-layout http://github.com/sandal/prawn-layout/ prawn-format http://github.com/sandal/prawn-format/
Installation Options # Clone from the repository git clone git://github.com/sandal/prawn.git
# Install the gem directly sudo gem install prawn Keepin’ it simple...
Kickin’ it up a notch... Installation Options rake gems:install rake
gems:unpack # optional
Or configure your Rails project for the latest release of
prawn-core and extensions... Installation Options rake gems:install rake gems:unpack # optional
What can it do?
Tables... Exact positioning... Italic, bold, etc... Drawing...
Image embedding... Background colors... UTF-8...
Rails integration...
Inline HTML formatting with prawn-format Speed observations... it’s faster!
Code Examples
Text...
Positioning...
Drawing...
Colors...
Embedding images...
prawn-layout Adds support for tables, grid layouts, etc.
prawn-format Adds support for inline formatting w/HTML tags
prawnto some_controller.rb default.prawn Tasty with Rails! Use helpers, instance vars,
etc. in your views
Bugs & Gotchas • Adobe Reader incompatibilities • Occasional UTF-8
errors • Spotty error handling • prawn-format doesn’t like some chars (gt, lt)
Background Processing Can’t beat delayed_job for simplicity... http://github.com/tobi/delayed_job/ # Run
queued jobs rake jobs:work
Conclusion!
Matthew Bass matthewbass.com ©2009 Adeptware, Inc.